diff options
author | ringabout <43030857+ringabout@users.noreply.github.com> | 2023-04-21 21:37:58 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-21 15:37:58 +0200 |
commit | 4fa86422c057ae0615a6f06a6fd0a538e1bce029 (patch) | |
tree | 4cbf62d4563e43d1fbb071c78672bd6e6f805006 /tests/parallel | |
parent | 48de0d0cf47131bd7e096418563463b80d43994d (diff) | |
download | Nim-4fa86422c057ae0615a6f06a6fd0a538e1bce029.tar.gz |
stdlib tests now check refc too (#21664)
* stdlib tests now check refc too * typo * fixes line numbers * disable cpp * do not touch
Diffstat (limited to 'tests/parallel')
-rw-r--r-- | tests/parallel/t10913.nim | 2 | ||||
-rw-r--r-- | tests/parallel/t7535.nim | 2 | ||||
-rw-r--r-- | tests/parallel/t9691.nim | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/tests/parallel/t10913.nim b/tests/parallel/t10913.nim index d8459ecd0..191939100 100644 --- a/tests/parallel/t10913.nim +++ b/tests/parallel/t10913.nim @@ -1,5 +1,5 @@ discard """ - matrix: "--threads:on" + matrix: "--mm:refc; --mm:orc" errormsg: "'spawn'ed function cannot have a 'typed' or 'untyped' parameter" """ diff --git a/tests/parallel/t7535.nim b/tests/parallel/t7535.nim index 052dcdc3a..7817a1c9e 100644 --- a/tests/parallel/t7535.nim +++ b/tests/parallel/t7535.nim @@ -1,5 +1,5 @@ discard """ - matrix: "--threads:on" + matrix: "--mm:refc; --mm:orc" errormsg: "'spawn' takes a call expression; got: proc (x: uint32) = echo [x]" """ diff --git a/tests/parallel/t9691.nim b/tests/parallel/t9691.nim index bbf2b1bc7..254f03416 100644 --- a/tests/parallel/t9691.nim +++ b/tests/parallel/t9691.nim @@ -1,5 +1,5 @@ discard """ - matrix: "--threads:on" + matrix: "--mm:refc; --mm:orc" errormsg: "'spawn'ed function cannot have a 'typed' or 'untyped' parameter" """ |