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

output stack traces when unit tests time out

parent 2289a798
No related branches found
No related tags found
No related merge requests found
......@@ -207,6 +207,9 @@ public final class FastRSession implements RSession {
try {
if (!thread.await(longTimeout ? longTimeoutValue : timeoutValue)) {
consoleHandler.println("<timeout>");
for (StackTraceElement element : thread.getStackTrace()) {
System.out.println(element);
}
thread.stop();
evalThread.ensureContextDestroyed();
evalThread = null;
......
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