more C++ debugging

This commit is contained in:
parrt 2016-12-14 13:17:10 -08:00
parent 8af4c38991
commit 8918d0f953
1 changed files with 2 additions and 0 deletions

View File

@ -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);
}
}