diff options
author | Timothee Cour <timothee.cour2@gmail.com> | 2021-05-07 15:22:21 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-08 00:22:21 +0200 |
commit | fb677bf5c921018b9b192aad2883068236eb0670 (patch) | |
tree | 31109dab525ef34dd192260afce4fa5f6045d296 /tests/manyloc/nake | |
parent | 062571ae3ca0a7c19b639c71b087f9895dbe9c7d (diff) | |
download | Nim-fb677bf5c921018b9b192aad2883068236eb0670.tar.gz |
fix #17952: fix both false positives and false negatives for reInvalidSpec (#17956)
* fix #17952: fix both false positives and false negatives for reInvalidSpec * handle megatest properly * fix for tests/stdlib/tbase64.nim
Diffstat (limited to 'tests/manyloc/nake')
-rw-r--r-- | tests/manyloc/nake/nakefile.nim | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/tests/manyloc/nake/nakefile.nim b/tests/manyloc/nake/nakefile.nim index 95058c277..fc479a5c2 100644 --- a/tests/manyloc/nake/nakefile.nim +++ b/tests/manyloc/nake/nakefile.nim @@ -29,11 +29,12 @@ task "test2", "Build release test build test release build": if shell("nim", ReleaseDefines, ReleaseTestDefines, "compile", ExeName) == 0: shell "."/ExeName -discard """task "dirserver", "build the directory server": - withDir "server": - if shell("nim", ServerDefines, "compile", "dirserver") != 0: - echo "Failed to build the dirserver" - quit 1""" +when false: + task "dirserver", "build the directory server": + withDir "server": + if shell("nim", ServerDefines, "compile", "dirserver") != 0: + echo "Failed to build the dirserver" + quit 1 task "zoneserver", "build the zone server": withDir "enet_server": |