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/stdlib/concurrency | |
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/stdlib/concurrency')
-rw-r--r-- | tests/stdlib/concurrency/tatomics.nim | 4 | ||||
-rw-r--r-- | tests/stdlib/concurrency/tatomics_size.nim | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/tests/stdlib/concurrency/tatomics.nim b/tests/stdlib/concurrency/tatomics.nim index 9cfdce83d..3fb5197da 100644 --- a/tests/stdlib/concurrency/tatomics.nim +++ b/tests/stdlib/concurrency/tatomics.nim @@ -1,3 +1,7 @@ +discard """ + matrix: "--mm:refc; --mm:orc" +""" + # test atomic operations import std/[atomics, bitops] diff --git a/tests/stdlib/concurrency/tatomics_size.nim b/tests/stdlib/concurrency/tatomics_size.nim index 7b43787fb..cfe568623 100644 --- a/tests/stdlib/concurrency/tatomics_size.nim +++ b/tests/stdlib/concurrency/tatomics_size.nim @@ -1,4 +1,5 @@ discard """ + matrix: "--mm:refc; --mm:orc" targets: "c cpp" """ import std/atomics |