stacktraces can now show custom runtime msgs per frame (#13351)

* stacktraces can now show custom runtime msgs
* improve tests/stdlib/tstackframes.nim
* fix test for --gc:arc
* test --stacktraceMsgs:on and --stacktraceMsgs:off
* --stacktracemsgs:off by default
This commit is contained in:
Timothee Cour
2020-03-30 04:45:32 -07:00
committed by GitHub
parent 8088633250
commit 19cab9fa51
14 changed files with 171 additions and 21 deletions

View File

@@ -36,4 +36,4 @@ try:
except AssertionError:
let e = getCurrentException()
let trace = e.getStackTrace
echo tmatch(trace, expected)
if tmatch(trace, expected): echo true else: echo "wrong trace:\n" & trace