aboutsummaryrefslogtreecommitdiffstats
path: root/resources
diff options
context:
space:
mode:
authorGravatar Matteo Bertucci <[email protected]>2021-02-24 15:45:08 +0100
committerGravatar Matteo Bertucci <[email protected]>2021-02-24 15:45:08 +0100
commit5c17be752dedb46370af3b1c370baa59b17a1d4b (patch)
tree01c1ecc6b0756c5807420418e115e5c28d0761e9 /resources
parentProperly handle return codes 5 and 99 (diff)
Don't communicate the traceback back to the backend
Diffstat (limited to 'resources')
-rw-r--r--resources/unittest_template.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/resources/unittest_template.py b/resources/unittest_template.py
index 7919b5c..755f7cc 100644
--- a/resources/unittest_template.py
+++ b/resources/unittest_template.py
@@ -77,6 +77,5 @@ try:
module = _load_user_module()
_main()
except Exception:
- print("Uncaught exception:\n", file=RESULT)
- traceback.print_exc(file=RESULT)
+ print("Uncaught exception inside runner.", file=RESULT)
_exit_sandbox(99) \ No newline at end of file