blob: a0a1186ea3103e6f6f2e40d67fbac31e687837cf [file] [log] [blame]
J. Duke319a3b92007-12-01 00:00:00 +00001
2This directory contains a test to exercise the Premain-Class attribute with
3a non US-ASCII class name. As the file system may not support a file with
4this name the test is compiled off-line and the jar file checked into SCCS.
5
6In the event that Agent.jar needs to be re-built here are the steps which
7must be performed on a system that supports the the EURO in a file name
8(Windows 2000 is fine) :-
9
101. Create the agent source file and agent.mf :-
11
12 javac CreateFiles.java
13 java CreateFiles
14
152. Re-create the agent jar file :-
16
17 rm CreateFiles.class
18 javac -encoding utf8 *.java
19 jar cfm Agent.jar agent.mf *.class
20
213. Check Agent.jar into SCCS.
22