Fix 086-null-super and 087-gc-after-link
Parallel run-test means that the dex files for 086 and 087 are no longer
always in test.jar. Correct the behavior of the class linker when
Classloader.loadClass returns null to be the behavior of Dalvik.
Change-Id: Icf6363e118d03a01060012ac558b5f1a484d74f9
diff --git a/test/086-null-super/src/Main.java b/test/086-null-super/src/Main.java
index 6decb20..0b8b2f5 100644
--- a/test/086-null-super/src/Main.java
+++ b/test/086-null-super/src/Main.java
@@ -55,7 +55,7 @@
private static final String CLASS_NAME =
"Main$BrokenDexLoader$Inaccessible";
- private static final String DEX_FILE = "test.jar";
+ private static final String DEX_FILE = "/data/art-test/086-null-super.jar";
public BrokenDexLoader(ClassLoader parent) {
super(parent);