diff options
author | Timothee Cour <timothee.cour2@gmail.com> | 2021-04-23 22:54:31 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-24 07:54:31 +0200 |
commit | b667e288e27a09ce4f65166fc66a6b713350a9b6 (patch) | |
tree | 547cd716f3f3e3a3d91083c1c3d6cb32ad4c1789 /tests | |
parent | 80df21d9a368b0ad40f6c36b898861e75926b732 (diff) | |
download | Nim-b667e288e27a09ce4f65166fc66a6b713350a9b6.tar.gz |
move travis, appveyor, ci.yml.disabled to `unmaintained/` (#17828)
* move travis, appveyor, ci.yml.disabled to unmaintained * update some mentions of travis, appevyor * fix test
Diffstat (limited to 'tests')
-rw-r--r-- | tests/async/tasyncdial.nim | 1 | ||||
-rw-r--r-- | tests/stdlib/tmemlinesBuf.nim | 8 | ||||
-rw-r--r-- | tests/stdlib/tnetdial.nim | 1 | ||||
-rw-r--r-- | tests/system/talloc.nim | 6 | ||||
-rw-r--r-- | tests/system/talloc2.nim | 2 |
5 files changed, 3 insertions, 15 deletions
diff --git a/tests/async/tasyncdial.nim b/tests/async/tasyncdial.nim index a755de74e..f0377dfd5 100644 --- a/tests/async/tasyncdial.nim +++ b/tests/async/tasyncdial.nim @@ -3,7 +3,6 @@ discard """ OK AF_INET OK AF_INET6 ''' - disabled: "travis" """ import diff --git a/tests/stdlib/tmemlinesBuf.nim b/tests/stdlib/tmemlinesBuf.nim index ea607525d..3f0bd5182 100644 --- a/tests/stdlib/tmemlinesBuf.nim +++ b/tests/stdlib/tmemlinesBuf.nim @@ -1,8 +1,3 @@ -discard """ -output: "15" -disabled: "appveyor" -""" - import memfiles var inp = memfiles.open("tests/stdlib/tmemlinesBuf.nim") var buffer: string = "" @@ -11,5 +6,4 @@ for line in lines(inp, buffer): lineCount += 1 close(inp) - -echo lineCount +doAssert lineCount == 9, $lineCount # this file's number of lines diff --git a/tests/stdlib/tnetdial.nim b/tests/stdlib/tnetdial.nim index f940bd630..3de00ff99 100644 --- a/tests/stdlib/tnetdial.nim +++ b/tests/stdlib/tnetdial.nim @@ -2,7 +2,6 @@ discard """ cmd: "nim c --threads:on $file" exitcode: 0 output: "OK" - disabled: "travis" """ import os, net, nativesockets, asyncdispatch diff --git a/tests/system/talloc.nim b/tests/system/talloc.nim index 9b970fda0..a81fef481 100644 --- a/tests/system/talloc.nim +++ b/tests/system/talloc.nim @@ -1,8 +1,4 @@ -discard """ -disabled: "appveyor" -""" - -# appveyor is "out of memory" +# was: appveyor is "out of memory" var x: ptr int diff --git a/tests/system/talloc2.nim b/tests/system/talloc2.nim index c498a3f4b..9d1687f34 100644 --- a/tests/system/talloc2.nim +++ b/tests/system/talloc2.nim @@ -5,7 +5,7 @@ joinable: false disabled: 32bit """ # no point to test this on system with smaller address space -# appveyor is "out of memory" +# was: appveyor is "out of memory" const nmax = 2*1024*1024*1024 |