summary refs log blame commit diff stats
path: root/tests/assert/tassert.nim
blob: b3df30bd1afffb590f7753bf4067c3cd5d23f1d4 (plain) (tree)
1
2
3
4
5
6
7
8

                     
                                                             
               
   

                                    
                            












                                                                 

 
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 EAssertionFailed:
  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