nim-chronos/asyncdispatch2.nimble

58 lines
2.0 KiB
Plaintext
Raw Normal View History

2018-05-16 11:22:34 +03:00
packageName = "asyncdispatch2"
version = "2.0.6"
2018-05-16 11:22:34 +03:00
author = "Status Research & Development GmbH"
description = "Asyncdispatch2"
license = "Apache License 2.0 or MIT"
2018-06-18 23:57:40 +03:00
skipDirs = @["tests", "Nim", "nim", "benchmarks"]
2018-05-16 11:22:34 +03:00
### Dependencies
2018-05-22 01:07:11 +03:00
requires "nim > 0.18.0"
2018-05-16 11:22:34 +03:00
task test, "Run all tests":
2018-05-22 11:51:11 +03:00
exec "nim c -r -d:useSysAssert -d:useGcAssert tests/testsync"
exec "nim c -r tests/testsync"
2018-07-25 21:15:46 +03:00
exec "nim c -r --gc:markAndSweep tests/testsync"
2018-05-22 11:51:11 +03:00
exec "nim c -r -d:release tests/testsync"
2018-07-25 21:15:46 +03:00
exec "nim c -r -d:useSysAssert -d:useGcAssert tests/testsoon"
exec "nim c -r tests/testsoon"
2018-07-25 21:15:46 +03:00
exec "nim c -r --gc:markAndSweep tests/testsoon"
exec "nim c -r -d:release tests/testsoon"
2018-05-22 11:51:11 +03:00
2018-05-23 01:29:07 +03:00
exec "nim c -r -d:useSysAssert -d:useGcAssert tests/testtime"
exec "nim c -r tests/testtime"
2018-07-25 21:15:46 +03:00
exec "nim c -r --gc:markAndSweep tests/testtime"
2018-05-23 01:29:07 +03:00
exec "nim c -r -d:release tests/testtime"
2018-05-23 02:28:16 +03:00
exec "nim c -r -d:useSysAssert -d:useGcAssert tests/testfut"
exec "nim c -r tests/testfut"
2018-07-25 21:15:46 +03:00
exec "nim c -r --gc:markAndSweep tests/testfut"
2018-05-23 02:28:16 +03:00
exec "nim c -r -d:release tests/testfut"
exec "nim c -r -d:useSysAssert -d:useGcAssert tests/testsignal"
exec "nim c -r tests/testsignal"
2018-07-25 21:15:46 +03:00
exec "nim c -r --gc:markAndSweep tests/testsignal"
exec "nim c -r -d:release tests/testsignal"
exec "nim c -r -d:useSysAssert -d:useGcAssert tests/testaddress"
exec "nim c -r tests/testaddress"
2018-07-25 21:15:46 +03:00
exec "nim c -r --gc:markAndSweep tests/testaddress"
exec "nim c -r -d:release tests/testaddress"
exec "nim c -r -d:useSysAssert -d:useGcAssert tests/testdatagram"
2018-05-22 15:08:48 +03:00
exec "nim c -r tests/testdatagram"
2018-07-25 21:15:46 +03:00
exec "nim c -r --gc:markAndSweep tests/testdatagram"
2018-05-22 01:38:13 +03:00
exec "nim c -r -d:release tests/testdatagram"
exec "nim c -r -d:useSysAssert -d:useGcAssert tests/teststream"
exec "nim c -r tests/teststream"
2018-07-25 21:15:46 +03:00
exec "nim c -r --gc:markAndSweep tests/teststream"
exec "nim c -r -d:release tests/teststream"
2018-05-23 14:03:18 +03:00
exec "nim c -r -d:useSysAssert -d:useGcAssert tests/testserver"
exec "nim c -r tests/testserver"
2018-07-25 21:15:46 +03:00
exec "nim c -r --gc:markAndSweep tests/testserver"
exec "nim c -r -d:release tests/testserver"