diff options
author | Arne Döring <arne.doering@gmx.net> | 2018-11-20 13:25:55 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2018-11-23 11:58:31 +0100 |
commit | be553e691b2c404e72d0068916ea911e95ef8c6d (patch) | |
tree | 637873655475176d3644e89f32b278c7b1ef54f5 /tests/system | |
parent | 523ca76c4d939d6eb5687a60e8fbc0d8a022fd90 (diff) | |
download | Nim-be553e691b2c404e72d0068916ea911e95ef8c6d.tar.gz |
more eyewash
Diffstat (limited to 'tests/system')
-rw-r--r-- | tests/system/t7894.nim | 5 | ||||
-rw-r--r-- | tests/system/talloc.nim | 3 | ||||
-rw-r--r-- | tests/system/talloc2.nim | 3 |
3 files changed, 9 insertions, 2 deletions
diff --git a/tests/system/t7894.nim b/tests/system/t7894.nim index f68bfdde6..27ee3f220 100644 --- a/tests/system/t7894.nim +++ b/tests/system/t7894.nim @@ -1,7 +1,10 @@ discard """ disabled: "travis" +disabled: "appveyor" """ +# CI integration servers are out of memory for this test + const size = 250000000 proc main() = @@ -16,8 +19,6 @@ proc main() = for x in saved: #echo x.len - echo x.len doAssert x.len == size - main() diff --git a/tests/system/talloc.nim b/tests/system/talloc.nim index bf2cd97a8..9b970fda0 100644 --- a/tests/system/talloc.nim +++ b/tests/system/talloc.nim @@ -1,6 +1,9 @@ discard """ +disabled: "appveyor" """ +# appveyor is "out of memory" + var x: ptr int x = cast[ptr int](alloc(7)) diff --git a/tests/system/talloc2.nim b/tests/system/talloc2.nim index 0757c0724..6b30a0258 100644 --- a/tests/system/talloc2.nim +++ b/tests/system/talloc2.nim @@ -1,6 +1,9 @@ discard """ +disabled: "appveyor" """ +# appveyor is "out of memory" + const nmax = 2*1024*1024*1024 |