summary refs log tree commit diff stats
path: root/tests/assert/tassert.nim
blob: b5f2fb715d7662ac4310e724bc10f490796a0209 (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
discard """
  file: "tassert.nim"
  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