Files
Nim/tests/stdlib/tquit.nim
Timothee Cour e07d661d16 fix #14475; unittest.require now works with nim c; require and check now works with -d:nodejs (#14676)
* fix #14475; make unittest work with -d:nodejs

* fixup

* fixup

* disable inim, delaunay which failed after unittest.require got fixed

* re-enable tests that have been fixed
2020-07-14 13:14:32 +02:00

14 lines
172 B
Nim

discard """
output: '''
just exiting...
'''
joinable: false
"""
# Test `addQuitProc`
proc myExit() {.noconv.} =
write(stdout, "just exiting...\n")
addQuitProc(myExit)