Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1405)

Unified Diff: tests/compiler/dart2js/serialization_compilation_test.dart

Issue 1927963002: Support compilation of Hello World (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Fixes Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: tests/compiler/dart2js/serialization_compilation_test.dart
diff --git a/tests/compiler/dart2js/serialization_compilation_test.dart b/tests/compiler/dart2js/serialization_compilation_test.dart
index 590f57a5c5ab5de4f0cd59c17361793a3f034c6e..969c67db9bd9110cb6e469d231578a2650551133 100644
--- a/tests/compiler/dart2js/serialization_compilation_test.dart
+++ b/tests/compiler/dart2js/serialization_compilation_test.dart
@@ -29,7 +29,7 @@ main(List<String> args) {
} else {
Uri entryPoint = Uri.parse('memory:main.dart');
// TODO(johnniwinther): Handle the remaining tests.
- for (Test test in TESTS.sublist(0, 1)) {
+ for (Test test in TESTS.sublist(0, 2)) {
await compile(serializedData, entryPoint, test,
verbose: arguments.verbose);
}
@@ -49,7 +49,10 @@ Future compile(String serializedData, Uri entryPoint, Test test,
entryPoint: entryPoint,
memorySourceFiles: test != null ? test.sourceFiles : const {},
options: [Flags.disableTypeInference,
- Flags.disableInlining],
+ Flags.disableInlining,
+ // TODO(johnniwinther): Reenable this: We have some invalid
+ // locations
+ Flags.noSourceMaps],
outputProvider: outputCollector,
beforeRun: (Compiler compiler) {
deserialize(compiler, serializedData, deserializeResolvedAst: true);
« no previous file with comments | « tests/compiler/dart2js/deferred_follow_constant_dependencies_test.dart ('k') | tests/compiler/dart2js/serialization_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698