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

Unified Diff: tests/compiler/dart2js/kernel/compile_from_dill_test.dart

Issue 2942863002: Compile and run Hello World! (Closed)
Patch Set: Rebased Created 3 years, 6 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/kernel/compile_from_dill_test.dart
diff --git a/tests/compiler/dart2js/kernel/compile_from_dill_test.dart b/tests/compiler/dart2js/kernel/compile_from_dill_test.dart
index 49b2add192f05bedabf92b035af5ee95dca7e23a..522fc258395279dfca87f59b4d722a7c0977bce2 100644
--- a/tests/compiler/dart2js/kernel/compile_from_dill_test.dart
+++ b/tests/compiler/dart2js/kernel/compile_from_dill_test.dart
@@ -141,6 +141,7 @@ Future<ResultKind> mainInternal(List<String> args,
checkBackendUsage(closedWorld1.backendUsage, closedWorld2.backendUsage,
equivalence.defaultStrategy);
+ print('--- checking resolution enqueuers ----------------------------------');
checkResolutionEnqueuers(closedWorld1.backendUsage, closedWorld2.backendUsage,
compiler1.enqueuer.resolution, compiler2.enqueuer.resolution,
elementEquivalence: (a, b) => equivalence.entityEquivalence(a, b),
@@ -150,6 +151,7 @@ Future<ResultKind> mainInternal(List<String> args,
elementFilter: elementFilter,
verbose: arguments.verbose);
+ print('--- checking closed worlds -----------------------------------------');
checkClosedWorlds(closedWorld1, closedWorld2,
strategy: equivalence.defaultStrategy,
verbose: arguments.verbose,
@@ -160,6 +162,7 @@ Future<ResultKind> mainInternal(List<String> args,
// TODO(johnniwinther): Perform equivalence tests on the model: codegen world
// impacts, program model, etc.
+ print('--- checking codegen enqueuers--------------------------------------');
checkCodegenEnqueuers(compiler1.enqueuer.codegenEnqueuerForTesting,
compiler2.enqueuer.codegenEnqueuerForTesting,
elementEquivalence: (a, b) => equivalence.entityEquivalence(a, b),
@@ -169,6 +172,7 @@ Future<ResultKind> mainInternal(List<String> args,
elementFilter: elementFilter,
verbose: arguments.verbose);
+ print('--- checking output------- -----------------------------------------');
collector1.outputMap
.forEach((OutputType outputType, Map<String, BufferedOutputSink> map1) {
if (outputType == OutputType.sourceMap) {
« no previous file with comments | « pkg/compiler/lib/src/universe/codegen_world_builder.dart ('k') | tests/compiler/dart2js/kernel/compiler_helper.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698