@testcase PR#41170 combine classpath on command line and in .lst file

This commit is contained in:
wisberg 2003-08-06 00:29:13 +00:00
parent 56f0f547f7
commit 40fb45135a
5 changed files with 24 additions and 0 deletions

View File

@ -5,4 +5,11 @@
<suite>
<ajc-test dir="bugs/options/classpath"
pr="41170"
title="combine classpath on command line and in .lst file">
<compile options="-verbose" argfiles="classpathTest.lst"/>
<run class="Client"/>
</ajc-test>
</suite>

View File

@ -0,0 +1,6 @@
public class Client {
public static void main(String[] args) {
lib.Library.method();
}
}

View File

@ -0,0 +1,4 @@
// @testcase PR#41170 combine classpath on command line and in .lst file
-classpath
lib.jar
Client.java

Binary file not shown.

View File

@ -0,0 +1,7 @@
package lib;
public class Library {
public static void method() {
}
}