Skip to content
Snippets Groups Projects
Commit 4d34f81a authored by Lukas Stadler's avatar Lukas Stadler
Browse files

less output on ProcessFailedTests

parent 4aad94e2
No related branches found
No related tags found
No related merge requests found
......@@ -268,10 +268,12 @@ public final class FastRSession implements RSession {
if (t instanceof RError) {
// nothing to do
} else {
if (!TestBase.ProcessFailedTests && t instanceof RInternalError) {
RInternalError.reportError(t);
if (!TestBase.ProcessFailedTests) {
if (t instanceof RInternalError) {
RInternalError.reportError(t);
}
t.printStackTrace();
}
t.printStackTrace();
killedByException = t;
}
} finally {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment