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

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

Issue 8359002: Fix libraryDepsVisitor to properly track prefixed library references (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 9 years, 2 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 08f9e80d5e0273dbb29869029bb7fe789db3301b..ca78c2dd27ef8526c37c09f1ad9a2a519b990ee1 100644
--- a/compiler/javatests/com/google/dart/compiler/end2end/End2EndTests.java
+++ b/compiler/javatests/com/google/dart/compiler/end2end/End2EndTests.java
@@ -5,6 +5,7 @@
package com.google.dart.compiler.end2end;
import com.google.dart.compiler.end2end.inc.IncrementalCompilationTest;
+import com.google.dart.compiler.end2end.inc.IncrementalCompilationWithPrefixTest;
import junit.extensions.TestSetup;
import junit.framework.Test;
@@ -22,6 +23,7 @@ public class End2EndTests extends TestSetup {
suite.addTestSuite(BasicTest.class);
suite.addTestSuite(MainMethodTest.class);
suite.addTestSuite(IncrementalCompilationTest.class);
+ suite.addTestSuite(IncrementalCompilationWithPrefixTest.class);
return new End2EndTests(suite);
}
}

Powered by Google App Engine
This is Rietveld 408576698