OLD | NEW |
1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2016, 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 library dart2js.serialization_compilation_test; | 5 library dart2js.serialization_compilation_test; |
6 | 6 |
7 import 'dart:async'; | 7 import 'dart:async'; |
8 import 'package:async_helper/async_helper.dart'; | 8 import 'package:async_helper/async_helper.dart'; |
9 import 'package:compiler/src/commandline_options.dart'; | 9 import 'package:compiler/src/commandline_options.dart'; |
10 import 'package:compiler/src/filenames.dart'; | 10 import 'package:compiler/src/filenames.dart'; |
11 import '../memory_compiler.dart'; | 11 import '../memory_compiler.dart'; |
12 import 'helper.dart'; | 12 import 'helper.dart'; |
13 import 'test_data.dart'; | 13 import 'test_data.dart'; |
14 import '../output_collector.dart'; | 14 import '../output_collector.dart'; |
15 | 15 |
| 16 /// Number of tests that are not part of the automatic test grouping. |
| 17 int SKIP_COUNT = 2; |
| 18 |
| 19 /// Number of groups that the [TESTS] are split into. |
| 20 int SPLIT_COUNT = 4; |
| 21 |
16 main(List<String> args) { | 22 main(List<String> args) { |
17 asyncTest(() async { | 23 asyncTest(() async { |
18 Arguments arguments = new Arguments.from(args); | 24 Arguments arguments = new Arguments.from(args); |
19 SerializedData serializedData = | 25 SerializedData serializedData = |
20 await serializeDartCore(arguments: arguments); | 26 await serializeDartCore(arguments: arguments); |
21 if (arguments.filename != null) { | 27 if (arguments.filename != null) { |
22 Uri entryPoint = Uri.base.resolve(nativeToUriPath(arguments.filename)); | 28 Uri entryPoint = Uri.base.resolve(nativeToUriPath(arguments.filename)); |
23 await compile( | 29 await compile( |
24 entryPoint, | 30 entryPoint, |
25 resolutionInputs: serializedData.toUris(), | 31 resolutionInputs: serializedData.toUris(), |
(...skipping 27 matching lines...) Expand all Loading... |
53 memorySourceFiles: sourceFiles, | 59 memorySourceFiles: sourceFiles, |
54 resolutionInputs: resolutionInputs, | 60 resolutionInputs: resolutionInputs, |
55 options: options, | 61 options: options, |
56 outputProvider: outputCollector); | 62 outputProvider: outputCollector); |
57 }); | 63 }); |
58 if (verbose) { | 64 if (verbose) { |
59 print(outputCollector.getOutput('', 'js')); | 65 print(outputCollector.getOutput('', 'js')); |
60 } | 66 } |
61 } | 67 } |
62 | 68 |
OLD | NEW |