Explorar el Código

tests for Huff's fix for 102746 - not hooked up b/c harness manages classpath.

tags/PRE_ANDY
wisberg hace 19 años
padre
commit
178760115e

+ 8
- 0
tests/bugs/pr102746/PR102746.java Ver fichero

@@ -0,0 +1,8 @@

public class PR102746 {
public static void main(String[] args) {
if (!("hello".equals(lib.Lib.hello()))) {
throw new Error("no hello");
}
}
}

+ 9
- 0
tests/bugs/pr102746/PR102746.txt Ver fichero

@@ -0,0 +1,9 @@

Would test with

<ajc-test dir="bugs/pr102746" title="log to file with -log in classpath">
<compile files="lib/Lib.java" outjar="foo-logging.jar"/>
<compile files="PR102746.java" classpath="foo-logging.jar"/>
</ajc-test>

except that the harness is I think snooping for foo-logging.jar wrong.

+ 7
- 0
tests/bugs/pr102746/lib/Lib.java Ver fichero

@@ -0,0 +1,7 @@
package lib;

public class Lib {
public static String hello() {
return "hello";
}
}

Cargando…
Cancelar
Guardar