diff options
author | flywind <43030857+xflywind@users.noreply.github.com> | 2022-07-06 19:06:41 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-06 13:06:41 +0200 |
commit | 430a1793075866179b34790a461936023fca1c0a (patch) | |
tree | 59d4a3371a40e073a60532797bb5a433ffe7fdb2 /tests/stdlib/ttasks.nim | |
parent | 01b40dc1d7c7c5331361341bdf305084c799c05b (diff) | |
download | Nim-430a1793075866179b34790a461936023fca1c0a.tar.gz |
default threads on (#19368)
* default threads on * make rst gcsafe * ignore threads option for nimscript * threads off * use createShared for threads * test without threads * avr threds off * avr threads off * async threads off * threads off * fix ci * restore option * make CI pleased * fix ic tests * Update config.nims * add changelog * Update changelog.md Co-authored-by: konsumlamm <44230978+konsumlamm@users.noreply.github.com> Co-authored-by: konsumlamm <44230978+konsumlamm@users.noreply.github.com>
Diffstat (limited to 'tests/stdlib/ttasks.nim')
-rw-r--r-- | tests/stdlib/ttasks.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/stdlib/ttasks.nim b/tests/stdlib/ttasks.nim index 75fed9f9b..e90823aba 100644 --- a/tests/stdlib/ttasks.nim +++ b/tests/stdlib/ttasks.nim @@ -1,6 +1,6 @@ discard """ targets: "c cpp" - matrix: "--gc:orc" + matrix: "--gc:orc --threads:off" """ import std/[tasks, strformat] |