050c7e1ac7
I didn't update the generators to generate sorted output, I just whitelisted those files for now. Change-Id: Ia1d233ee978691f15bce06b2556aa3371c54183f Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/141209 Reviewed-by: Konstantin Shcheglov <scheglov@google.com> Commit-Queue: Brian Wilkerson <brianwilkerson@google.com>
14 lines
410 B
Dart
14 lines
410 B
Dart
// Copyright (c) 2018, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
import 'live_test.dart' as live;
|
|
import 'server_test.dart' as server;
|
|
import 'verify_sorted_test.dart' as verify_sorted;
|
|
|
|
void main() {
|
|
live.main();
|
|
server.main();
|
|
verify_sorted.main();
|
|
}
|