2019-02-06 14:49:11 +00:00
|
|
|
packageName = "chronos"
|
2020-07-12 16:20:21 +00:00
|
|
|
version = "2.5.0"
|
2018-05-16 08:22:34 +00:00
|
|
|
author = "Status Research & Development GmbH"
|
2019-02-06 14:49:11 +00:00
|
|
|
description = "Chronos"
|
2018-05-16 08:22:34 +00:00
|
|
|
license = "Apache License 2.0 or MIT"
|
2019-02-06 15:24:57 +00:00
|
|
|
skipDirs = @["tests"]
|
2018-05-16 08:22:34 +00:00
|
|
|
|
|
|
|
### Dependencies
|
|
|
|
|
2020-07-12 16:20:21 +00:00
|
|
|
requires "nim > 1.2.0"
|
2019-10-08 15:46:27 +00:00
|
|
|
"bearssl"
|
2018-05-16 08:22:34 +00:00
|
|
|
|
|
|
|
task test, "Run all tests":
|
2019-03-30 22:31:10 +00:00
|
|
|
var commands = [
|
2020-07-06 06:33:13 +00:00
|
|
|
"nim c -r -d:useSysAssert -d:useGcAssert tests/",
|
2020-07-08 16:48:01 +00:00
|
|
|
"nim c -r -d:chronosStackTrace tests/",
|
|
|
|
"nim c -r -d:release tests/",
|
|
|
|
"nim c -r -d:release -d:chronosFutureTracking tests/"
|
2019-03-24 16:57:36 +00:00
|
|
|
]
|
2020-07-06 06:33:13 +00:00
|
|
|
for testname in ["testall"]:
|
|
|
|
for cmd in commands:
|
|
|
|
let curcmd = cmd & testname
|
|
|
|
echo "\n" & curcmd
|
|
|
|
exec curcmd
|