8200355: local variable inference regression test generates classfile in test folder

LVTI harness should generate files in jtreg scratch dir

Reviewed-by: vromero
This commit is contained in:
Maurizio Cimadamore 2018-03-28 14:24:17 +01:00
parent b7e53c1204
commit 484ec0738e

@ -56,8 +56,18 @@ import static javax.tools.StandardLocation.SOURCE_PATH;
public class LocalVariableInferenceTester {
static final JavaCompiler comp = ToolProvider.getSystemJavaCompiler();
static final StandardJavaFileManager fm = comp.getStandardFileManager(null, null, null);
static final StandardJavaFileManager fm;
static {
final JavaCompiler comp = ToolProvider.getSystemJavaCompiler();
fm = comp.getStandardFileManager(null, null, null);
File destDir = new File(System.getProperty("user.dir"));
try {
fm.setLocation(javax.tools.StandardLocation.CLASS_OUTPUT, Arrays.asList(destDir));
} catch (IOException ex) {
throw new AssertionError(ex);
}
}
public static void main(String[] args) throws IOException {
try {