Searched refs:sharedLibraries (Results 1 – 1 of 1) sorted by relevance
/art/test/688-shared-library/src-art/ |
D | Main.java | 50 ClassLoader[] sharedLibraries = { in testOneLibrary() local 54 new PathClassLoader(MAIN_JAR_FILE, null, bootLoader, sharedLibraries); in testOneLibrary() 56 assertIdentical(sharedLibraries[0], cls.getClassLoader()); in testOneLibrary() 58 assertIdentical(sharedLibraries[0], cls.getClassLoader()); in testOneLibrary() 61 new DelegateLastClassLoader(MAIN_JAR_FILE, null, bootLoader, sharedLibraries); in testOneLibrary() 63 assertIdentical(sharedLibraries[0], cls.getClassLoader()); in testOneLibrary() 65 assertIdentical(sharedLibraries[0], cls.getClassLoader()); in testOneLibrary() 69 ClassLoader[] sharedLibraries = { in testTwoLibraries1() local 73 ClassLoader delegateFirst = new PathClassLoader("", null, bootLoader, sharedLibraries); in testTwoLibraries1() 75 assertIdentical(sharedLibraries[0], cls.getClassLoader()); in testTwoLibraries1() [all …]
|