CompileDriver: fail with an informative exception in tests instead of silently refusing to compile

This commit is contained in:
peter
2019-03-20 10:12:25 +01:00
parent 9d0c3f655f
commit 8104fdf6ea
@@ -699,7 +699,7 @@ public class CompileDriver {
return true;
}
catch (Throwable e) {
LOG.info(e);
LOG.error(e);
return false;
}
}