blob: 002d65c53090a6a3fc7994450311375f642623b5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
discard """
cmd: "nim $target $options --excessiveStackTrace:off $file"
output: '''true'''
"""
const expected = """
tfailedassert_stacktrace.nim(35) tfailedassert_stacktrace
tfailedassert_stacktrace.nim(34) foo
assertions.nim(*) failedAssertImpl
assertions.nim(*) raiseAssert
fatal.nim(*) sysFatal"""
proc tmatch(x, p: string): bool =
var i = 0
var k = 0
while i < p.len:
if p[i] == '*':
let oldk = k
while k < x.len and x[k] in {'0'..'9'}: inc k
# no digit skipped?
if oldk == k: return false
inc i
elif k < x.len and p[i] == x[k]:
inc i
inc k
else:
return false
while k < x.len and x[k] in {' ', '\L', '\C'}: inc k
result = i >= p.len and k >= x.len
try:
proc foo() =
assert(false)
foo()
except AssertionError:
let e = getCurrentException()
let trace = e.getStackTrace
echo tmatch(trace, expected)
|