From 40fb45135a9079752db1fc3a984d278d054c6dbb Mon Sep 17 00:00:00 2001 From: wisberg Date: Wed, 6 Aug 2003 00:29:13 +0000 Subject: @testcase PR#41170 combine classpath on command line and in .lst file --- tests/bugs/options/classpath/Client.java | 6 ++++++ tests/bugs/options/classpath/classpathTest.lst | 4 ++++ tests/bugs/options/classpath/lib.jar | Bin 0 -> 367 bytes tests/bugs/options/classpath/lib/Library.java | 7 +++++++ 4 files changed, 17 insertions(+) create mode 100644 tests/bugs/options/classpath/Client.java create mode 100644 tests/bugs/options/classpath/classpathTest.lst create mode 100644 tests/bugs/options/classpath/lib.jar create mode 100644 tests/bugs/options/classpath/lib/Library.java (limited to 'tests/bugs') diff --git a/tests/bugs/options/classpath/Client.java b/tests/bugs/options/classpath/Client.java new file mode 100644 index 000000000..5b1271739 --- /dev/null +++ b/tests/bugs/options/classpath/Client.java @@ -0,0 +1,6 @@ + +public class Client { + public static void main(String[] args) { + lib.Library.method(); + } +} \ No newline at end of file diff --git a/tests/bugs/options/classpath/classpathTest.lst b/tests/bugs/options/classpath/classpathTest.lst new file mode 100644 index 000000000..e3f419de6 --- /dev/null +++ b/tests/bugs/options/classpath/classpathTest.lst @@ -0,0 +1,4 @@ +// @testcase PR#41170 combine classpath on command line and in .lst file +-classpath +lib.jar +Client.java diff --git a/tests/bugs/options/classpath/lib.jar b/tests/bugs/options/classpath/lib.jar new file mode 100644 index 000000000..81738d97a Binary files /dev/null and b/tests/bugs/options/classpath/lib.jar differ diff --git a/tests/bugs/options/classpath/lib/Library.java b/tests/bugs/options/classpath/lib/Library.java new file mode 100644 index 000000000..9699686b4 --- /dev/null +++ b/tests/bugs/options/classpath/lib/Library.java @@ -0,0 +1,7 @@ + +package lib; + +public class Library { + public static void method() { + } +} \ No newline at end of file -- cgit v1.2.3