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

Unified Diff: compiler/javatests/com/google/dart/compiler/end2end/End2EndTests.java

Issue 9148026: Recompile unit with potential conflict/dependency on some top-level symbol. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix for compiling corelib, so NPE in TreeShaker Created 8 years, 11 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: compiler/javatests/com/google/dart/compiler/end2end/End2EndTests.java
diff --git a/compiler/javatests/com/google/dart/compiler/end2end/End2EndTests.java b/compiler/javatests/com/google/dart/compiler/end2end/End2EndTests.java
index ca78c2dd27ef8526c37c09f1ad9a2a519b990ee1..fe86fbcf457c84c88bd07c76a49964174f330198 100644
--- a/compiler/javatests/com/google/dart/compiler/end2end/End2EndTests.java
+++ b/compiler/javatests/com/google/dart/compiler/end2end/End2EndTests.java
@@ -4,6 +4,7 @@
package com.google.dart.compiler.end2end;
+import com.google.dart.compiler.end2end.inc.IncrementalCompilation2Test;
import com.google.dart.compiler.end2end.inc.IncrementalCompilationTest;
import com.google.dart.compiler.end2end.inc.IncrementalCompilationWithPrefixTest;
@@ -23,6 +24,7 @@ public class End2EndTests extends TestSetup {
suite.addTestSuite(BasicTest.class);
suite.addTestSuite(MainMethodTest.class);
suite.addTestSuite(IncrementalCompilationTest.class);
+ suite.addTestSuite(IncrementalCompilation2Test.class);
suite.addTestSuite(IncrementalCompilationWithPrefixTest.class);
return new End2EndTests(suite);
}

Powered by Google App Engine
This is Rietveld 408576698