| Index: compiler/javatests/com/google/dart/compiler/SystemLibrariesReaderTest.java
|
| ===================================================================
|
| --- compiler/javatests/com/google/dart/compiler/SystemLibrariesReaderTest.java (revision 11874)
|
| +++ compiler/javatests/com/google/dart/compiler/SystemLibrariesReaderTest.java (working copy)
|
| @@ -32,6 +32,9 @@
|
| Map<String, DartLibrary> librariesMap = reader.getLibrariesMap();
|
| assertTrue(!librariesMap.isEmpty());
|
| for (Entry<String, DartLibrary> entry : librariesMap.entrySet()) {
|
| + if (entry.getValue().getCategory().equals("Internal")){
|
| + continue;
|
| + }
|
| String path = entry.getValue().getPath();
|
| File file = new File(base.resolve(new URI(null, null, path, null, null)).normalize());
|
| if (!file.exists()) {
|
| @@ -50,7 +53,8 @@
|
| assertTrue(library != null);
|
| assertEquals("dart:coreimpl",library.getShortName());
|
| assertTrue(library.isImplementation());
|
| - assertEquals("Shared", library.getCategory());
|
| + assertEquals("Shared", library.getCategory());
|
| +
|
| }
|
|
|
| }
|
|
|