Compile grammars with debug info for tests
This commit is contained in:
parent
32aefbce74
commit
05a199ed2d
|
@ -292,7 +292,7 @@ public abstract class BaseTest {
|
||||||
fileManager.getJavaFileObjectsFromFiles(files);
|
fileManager.getJavaFileObjectsFromFiles(files);
|
||||||
|
|
||||||
Iterable<String> compileOptions =
|
Iterable<String> compileOptions =
|
||||||
Arrays.asList("-d", tmpdir, "-cp", tmpdir+pathSep+CLASSPATH);
|
Arrays.asList("-g", "-d", tmpdir, "-cp", tmpdir+pathSep+CLASSPATH);
|
||||||
|
|
||||||
JavaCompiler.CompilationTask task =
|
JavaCompiler.CompilationTask task =
|
||||||
compiler.getTask(null, fileManager, null, compileOptions, null,
|
compiler.getTask(null, fileManager, null, compileOptions, null,
|
||||||
|
|
Loading…
Reference in New Issue