2018-12-18 15:39:39 +00:00
|
|
|
mode = ScriptMode.Verbose
|
|
|
|
|
2019-07-06 17:12:24 +00:00
|
|
|
packageName = "stew"
|
2018-12-18 15:39:39 +00:00
|
|
|
version = "0.1.0"
|
|
|
|
author = "Status Research & Development GmbH"
|
2019-05-08 20:05:16 +00:00
|
|
|
description = "Backports, standard library candidates and small utilities that don't yet deserve their own repository"
|
2018-12-18 15:39:39 +00:00
|
|
|
license = "Apache License 2.0"
|
|
|
|
skipDirs = @["tests"]
|
|
|
|
|
2020-04-11 14:22:37 +00:00
|
|
|
requires "nim >= 1.2.0"
|
2019-07-06 18:00:37 +00:00
|
|
|
|
2021-01-07 03:33:01 +00:00
|
|
|
### Helper functions
|
|
|
|
proc test(env, path: string) =
|
|
|
|
# Compilation language is controlled by TEST_LANG
|
|
|
|
var lang = "c"
|
|
|
|
if existsEnv"TEST_LANG":
|
|
|
|
lang = getEnv"TEST_LANG"
|
|
|
|
|
|
|
|
exec "nim " & lang & " " & env &
|
2021-06-01 06:27:27 +00:00
|
|
|
" -r --hints:off --skipParentCfg " & path
|
2021-01-07 03:33:01 +00:00
|
|
|
|
2019-07-06 18:00:37 +00:00
|
|
|
task test, "Run all tests":
|
2021-01-07 03:33:01 +00:00
|
|
|
test "--threads:off", "tests/all_tests"
|
|
|
|
test "--threads:on -d:nimTypeNames", "tests/all_tests"
|
|
|
|
test "--threads:on -d:noIntrinsicsBitOpts -d:noIntrinsicsEndians", "tests/all_tests"
|
2020-06-15 14:09:41 +00:00
|
|
|
|
|
|
|
task testvcc, "Run all tests with vcc compiler":
|
2021-01-07 03:33:01 +00:00
|
|
|
test "--cc:vcc --threads:off", "tests/all_tests"
|
|
|
|
test "--cc:vcc --threads:on -d:nimTypeNames", "tests/all_tests"
|
|
|
|
test "--cc:vcc --threads:on -d:noIntrinsicsBitOpts -d:noIntrinsicsEndians", "tests/all_tests"
|