ソースを参照

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

tags/PRE_ANDY
wisberg 19年前
コミット
178760115e
3個のファイルの変更24行の追加0行の削除
  1. 8
    0
      tests/bugs/pr102746/PR102746.java
  2. 9
    0
      tests/bugs/pr102746/PR102746.txt
  3. 7
    0
      tests/bugs/pr102746/lib/Lib.java

+ 8
- 0
tests/bugs/pr102746/PR102746.java ファイルの表示

@@ -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 ファイルの表示

@@ -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 ファイルの表示

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

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

読み込み中…
キャンセル
保存