Home
last modified time | relevance | path

Searched refs:commandLine (Results 1 – 1 of 1) sorted by relevance

/cts/tools/vm-tests-tf/src/util/build/
DJavacBuildStep.java57 String[] commandLine = new String[sourceFiles.size()+args]; in build() local
58 commandLine[0] = "-classpath"; in build()
59 commandLine[1] = classPath; in build()
60 commandLine[2] = "-d"; in build()
61 commandLine[3] = destPath; in build()
66 System.arraycopy(files, 0, commandLine, args, files.length); in build()
69 return Main.compile(commandLine, new PrintWriter(System.err)) == 0; in build()