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

Unified Diff: pkg/dev_compiler/test/worker/worker_test.dart

Issue 2853543002: Temporarily disable overlapping summary check (Closed)
Patch Set: Created 3 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
« no previous file with comments | « pkg/dev_compiler/lib/src/compiler/compiler.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/dev_compiler/test/worker/worker_test.dart
diff --git a/pkg/dev_compiler/test/worker/worker_test.dart b/pkg/dev_compiler/test/worker/worker_test.dart
index 3e017fc753fffb6b4a3ba65109224b186ff164bc..a5e3c1ba38612b9afe0a1583e3deb08caa785fa5 100644
--- a/pkg/dev_compiler/test/worker/worker_test.dart
+++ b/pkg/dev_compiler/test/worker/worker_test.dart
@@ -241,10 +241,12 @@ main() {
helloJS.path,
helloDart.path,
]);
- expect(result.exitCode, 65);
- expect(result.stdout, contains("conflict"));
- expect(result.stdout, contains('${toUri(greetingDart.path)}'));
- expect(helloJS.existsSync(), isFalse);
+ // TODO(vsm): Re-enable when we turn this check back on.
+ expect(result.exitCode, 0);
+ // expect(result.exitCode, 65);
+ // expect(result.stdout, contains("conflict"));
+ // expect(result.stdout, contains('${toUri(greetingDart.path)}'));
+ // expect(helloJS.existsSync(), isFalse);
});
});
« no previous file with comments | « pkg/dev_compiler/lib/src/compiler/compiler.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698