Skip to content

Commit

Permalink
adde spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
annaibm committed Jun 11, 2024
1 parent 7f6dfcd commit df52b0c
Showing 2 changed files with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -187,7 +187,6 @@ public void setUp(StfCoreExtension test, StfSharedClassesExtension sharedClasses
// If not, create them in the first -systemtest-prereqs directory (or the default location if no -systemtest-prereqs were supplied).
DirectoryRef sharedClassesDataDir = null; // This will be initialised when we find it.
int javaVersion = test.env().primaryJvm().getJavaVersion();
System.out.println("java.version = " + javaVersion);
String dataSubdir = "sharedClassesTestData/v1";
ArrayList<DirectoryRef> prereqRoots = test.env().getPrereqRoots();
String classFileName = "classes_jdk" + javaVersion + ".jar";
Original file line number Diff line number Diff line change
@@ -96,9 +96,9 @@ public static void main(String[] args)

}

void go(String path, int numArg, int javaVersion) {
void go(String path, int numArg, int javaVersion) {
log("Creating source files");
makeJavas(path, numArg,javaVersion); //Make java source files
makeJavas(path, numArg); //Make java source files
log("Compiling java files");
compileJavas(path); //Compile Source to .class files
log("Source files compiled, creating jar files");
@@ -120,9 +120,8 @@ public static void log(String message) {
* @param directory String, the directory to write them into.
* @param count int, the number of tests to generate.
*/
private void makeJavas(String dir, int count, int javaVersion)
private void makeJavas(String dir, int count)
{
System.out.println("dir:" + dir);
String sl = System.getProperty("file.separator");
String directory = dir + sl + "net" + sl + "openj9" + sl + "sc" + sl + "classes";

0 comments on commit df52b0c

Please sign in to comment.