forked from jasder/antlr
more C++ debugging
This commit is contained in:
parent
8af4c38991
commit
8918d0f953
|
@ -565,6 +565,7 @@ public class BaseCppTest implements RuntimeTestSupport {
|
|||
}
|
||||
catch (Exception e) {
|
||||
System.err.println("can't compile antlr cpp runtime");
|
||||
e.printStackTrace(System.err);
|
||||
try {
|
||||
String command[] = { "ls", "-la" };
|
||||
String output = runCommand(command, runtimePath + "/dist/", "printing library folder content", true);
|
||||
|
@ -572,6 +573,7 @@ public class BaseCppTest implements RuntimeTestSupport {
|
|||
}
|
||||
catch (Exception e2) {
|
||||
System.err.println("can't even list folder content");
|
||||
e2.printStackTrace(System.err);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue