summary refs log tree commit diff stats
path: root/tests/assert/tassert.nim
blob: 99929f080a945ca1092f50091acb8bc746ecbcda (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
discard """
  outputsub: "assertion failure!this shall be always written"
  exitcode: "1"
"""
# test assert and exception handling

proc callB() = assert(false)
proc callA() = callB()
proc callC() = callA()

try:
  callC()
except AssertionError:
  write(stdout, "assertion failure!")
except:
  write(stdout, "unknown exception!")
finally:
  system.write(stdout, "this shall be always written")

assert(false) #OUT assertion failure!this shall be always written