OLD | NEW |
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 import 'dart:io'; | 5 import 'dart:io'; |
6 | 6 |
7 import 'configuration.dart'; | 7 import 'configuration.dart'; |
8 import 'drt_updater.dart'; | 8 import 'drt_updater.dart'; |
9 import 'path.dart'; | 9 import 'path.dart'; |
10 import 'utils.dart'; | 10 import 'utils.dart'; |
11 | 11 |
12 const _defaultTestSelectors = const [ | 12 const _defaultTestSelectors = const [ |
13 'samples', | 13 'samples', |
14 'standalone', | 14 'standalone', |
15 'corelib', | 15 'corelib', |
| 16 'corelib_2', |
16 'co19', | 17 'co19', |
17 'language', | 18 'language', |
| 19 'language_2', |
18 'isolate', | 20 'isolate', |
19 'vm', | 21 'vm', |
20 'html', | 22 'html', |
21 'benchmark_smoke', | 23 'benchmark_smoke', |
22 'utils', | 24 'utils', |
23 'lib', | 25 'lib', |
| 26 'lib_2', |
24 'analyze_library', | 27 'analyze_library', |
25 'service', | 28 'service', |
26 'kernel', | 29 'kernel', |
27 'observatory_ui' | 30 'observatory_ui' |
28 ]; | 31 ]; |
29 | 32 |
30 /// Specifies a single command line option. | 33 /// Specifies a single command line option. |
31 /// | 34 /// |
32 /// The name of the specification is used as the key for the option in the Map | 35 /// The name of the specification is used as the key for the option in the Map |
33 /// returned from the [TestOptionParser] parse method. | 36 /// returned from the [TestOptionParser] parse method. |
(...skipping 732 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
766 if (name == option.name) return option; | 769 if (name == option.name) return option; |
767 | 770 |
768 // Allow hyphens instead of underscores as the separator since they are | 771 // Allow hyphens instead of underscores as the separator since they are |
769 // more common for command line flags. | 772 // more common for command line flags. |
770 if (name == option.name.replaceAll("_", "-")) return option; | 773 if (name == option.name.replaceAll("_", "-")) return option; |
771 } | 774 } |
772 | 775 |
773 return null; | 776 return null; |
774 } | 777 } |
775 } | 778 } |
OLD | NEW |