diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2018-12-09 13:47:03 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2018-12-11 21:23:24 +0100 |
commit | ac785b06236dbc228a3b755c11bb3b1330ccc3ab (patch) | |
tree | 8e96059a7b21e3fbc7582983a6330c6656e395f4 /tests/system | |
parent | 46820b94a634f70f805ab033703c225182564731 (diff) | |
download | Nim-ac785b06236dbc228a3b755c11bb3b1330ccc3ab.tar.gz |
testament: joinable is now an explicit concept of a test spec
Diffstat (limited to 'tests/system')
-rw-r--r-- | tests/system/t7894.nim | 1 | ||||
-rw-r--r-- | tests/system/talloc2.nim | 1 | ||||
-rw-r--r-- | tests/system/tparams.nim | 5 | ||||
-rw-r--r-- | tests/system/trealloc.nim | 1 |
4 files changed, 8 insertions, 0 deletions
diff --git a/tests/system/t7894.nim b/tests/system/t7894.nim index 27ee3f220..b7ca1eec8 100644 --- a/tests/system/t7894.nim +++ b/tests/system/t7894.nim @@ -1,6 +1,7 @@ discard """ disabled: "travis" disabled: "appveyor" +joinable: false """ # CI integration servers are out of memory for this test diff --git a/tests/system/talloc2.nim b/tests/system/talloc2.nim index e40c3f93c..7e0dec9d3 100644 --- a/tests/system/talloc2.nim +++ b/tests/system/talloc2.nim @@ -1,5 +1,6 @@ discard """ disabled: "windows" +joinable: false """ # appveyor is "out of memory" diff --git a/tests/system/tparams.nim b/tests/system/tparams.nim index 015530043..dcd620b20 100644 --- a/tests/system/tparams.nim +++ b/tests/system/tparams.nim @@ -1,3 +1,8 @@ +discard """ +joinable: false +""" + +# not joinable because it executes itself with parameters import os import osproc import parseopt2 diff --git a/tests/system/trealloc.nim b/tests/system/trealloc.nim index dc5f712d6..7180b8eda 100644 --- a/tests/system/trealloc.nim +++ b/tests/system/trealloc.nim @@ -1,5 +1,6 @@ discard """ output: '''success''' + joinable: false """ # bug #4818 |