From 178760115e55305fd8f726d078ea162df1ff0399 Mon Sep 17 00:00:00 2001 From: wisberg Date: Mon, 11 Jul 2005 23:52:53 +0000 Subject: [PATCH] tests for Huff's fix for 102746 - not hooked up b/c harness manages classpath. --- tests/bugs/pr102746/PR102746.java | 8 ++++++++ tests/bugs/pr102746/PR102746.txt | 9 +++++++++ tests/bugs/pr102746/lib/Lib.java | 7 +++++++ 3 files changed, 24 insertions(+) create mode 100644 tests/bugs/pr102746/PR102746.java create mode 100644 tests/bugs/pr102746/PR102746.txt create mode 100644 tests/bugs/pr102746/lib/Lib.java diff --git a/tests/bugs/pr102746/PR102746.java b/tests/bugs/pr102746/PR102746.java new file mode 100644 index 000000000..ceb42ab2e --- /dev/null +++ b/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"); + } + } +} \ No newline at end of file diff --git a/tests/bugs/pr102746/PR102746.txt b/tests/bugs/pr102746/PR102746.txt new file mode 100644 index 000000000..5dbfbdbad --- /dev/null +++ b/tests/bugs/pr102746/PR102746.txt @@ -0,0 +1,9 @@ + +Would test with + + + + + + +except that the harness is I think snooping for foo-logging.jar wrong. \ No newline at end of file diff --git a/tests/bugs/pr102746/lib/Lib.java b/tests/bugs/pr102746/lib/Lib.java new file mode 100644 index 000000000..ef5c29d89 --- /dev/null +++ b/tests/bugs/pr102746/lib/Lib.java @@ -0,0 +1,7 @@ +package lib; + +public class Lib { + public static String hello() { + return "hello"; + } +} \ No newline at end of file -- 2.39.5