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

Unified Diff: compiler/javatests/com/google/dart/compiler/SystemLibraryManagerTest.java

Issue 9702034: Removes dartc reliance on its own libraries, now can be targeted at any implementation's libraries (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 9 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/SystemLibraryManagerTest.java
diff --git a/compiler/javatests/com/google/dart/compiler/SystemLibraryManagerTest.java b/compiler/javatests/com/google/dart/compiler/SystemLibraryManagerTest.java
index 10f4d6c8061e50c075476a18e885221ce79512bd..676fb7f8bb6cda59f636fa2fff1e7c5ee7c27eba 100644
--- a/compiler/javatests/com/google/dart/compiler/SystemLibraryManagerTest.java
+++ b/compiler/javatests/com/google/dart/compiler/SystemLibraryManagerTest.java
@@ -8,7 +8,7 @@ import junit.framework.TestCase;
import java.net.URI;
public class SystemLibraryManagerTest extends TestCase {
- SystemLibraryManager systemLibraryManager = new SystemLibraryManager();
+ SystemLibraryManager systemLibraryManager = new SystemLibraryManager("../lib", "runtime");
public void testExpand1() throws Exception {
URI shortUri = new URI("dart:core");
@@ -79,7 +79,7 @@ public class SystemLibraryManagerTest extends TestCase {
/**
* For FS based {@link URI} the path is not <code>null</code>, for JAR {@link URI} the scheme
* specific part is not <code>null</code>.
- *
+ *
* @return the scheme specific path.
*/
private static String getPath(URI uri) {

Powered by Google App Engine
This is Rietveld 408576698