| OLD | NEW |
| 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, 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_analysis_test; | 5 library dart2js.serialization_analysis_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:expect/expect.dart'; | 9 import 'package:expect/expect.dart'; |
| 10 import 'package:compiler/src/commandline_options.dart'; | 10 import 'package:compiler/src/commandline_options.dart'; |
| 11 import 'package:compiler/src/compiler.dart'; | 11 import 'package:compiler/src/compiler.dart'; |
| 12 import 'package:compiler/src/filenames.dart'; | 12 import 'package:compiler/src/filenames.dart'; |
| 13 import '../memory_compiler.dart'; | 13 import '../memory_compiler.dart'; |
| 14 import 'helper.dart'; | 14 import 'helper.dart'; |
| 15 import 'test_data.dart'; | 15 import 'test_data.dart'; |
| 16 | 16 |
| 17 /// Number of tests that are not part of the automatic test grouping. |
| 18 int SKIP_COUNT = 0; |
| 19 |
| 20 /// Number of groups that the [TESTS] are split into. |
| 21 int SPLIT_COUNT = 2; |
| 22 |
| 17 main(List<String> args) { | 23 main(List<String> args) { |
| 18 asyncTest(() async { | 24 asyncTest(() async { |
| 19 Arguments arguments = new Arguments.from(args); | 25 Arguments arguments = new Arguments.from(args); |
| 20 SerializedData serializedData = | 26 SerializedData serializedData = |
| 21 await serializeDartCore(arguments: arguments); | 27 await serializeDartCore(arguments: arguments); |
| 22 if (arguments.filename != null) { | 28 if (arguments.filename != null) { |
| 23 Uri entryPoint = Uri.base.resolve(nativeToUriPath(arguments.filename)); | 29 Uri entryPoint = Uri.base.resolve(nativeToUriPath(arguments.filename)); |
| 24 await analyze(entryPoint, | 30 await analyze(entryPoint, |
| 25 resolutionInputs: serializedData.toUris(), | 31 resolutionInputs: serializedData.toUris(), |
| 26 sourceFiles: serializedData.toMemorySourceFiles()); | 32 sourceFiles: serializedData.toMemorySourceFiles()); |
| (...skipping 30 matching lines...) Expand all Loading... |
| 57 diagnosticCollector.warnings.length, | 63 diagnosticCollector.warnings.length, |
| 58 "Unexpected warning count."); | 64 "Unexpected warning count."); |
| 59 Expect.equals(test.expectedHintCount, diagnosticCollector.hints.length, | 65 Expect.equals(test.expectedHintCount, diagnosticCollector.hints.length, |
| 60 "Unexpected hint count."); | 66 "Unexpected hint count."); |
| 61 Expect.equals(test.expectedInfoCount, diagnosticCollector.infos.length, | 67 Expect.equals(test.expectedInfoCount, diagnosticCollector.infos.length, |
| 62 "Unexpected info count."); | 68 "Unexpected info count."); |
| 63 } | 69 } |
| 64 }); | 70 }); |
| 65 } | 71 } |
| 66 | 72 |
| OLD | NEW |