diff options
Diffstat (limited to 'tests/threads/t8535.nim')
-rw-r--r-- | tests/threads/t8535.nim | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/threads/t8535.nim b/tests/threads/t8535.nim index dfc95547d..a4296df11 100644 --- a/tests/threads/t8535.nim +++ b/tests/threads/t8535.nim @@ -1,4 +1,5 @@ discard """ + disabled: i386 output: '''0 hello''' """ @@ -22,7 +23,7 @@ import asyncdispatch import threadpool proc f1() = - waitFor sleepAsync(100) + waitFor sleepAsync(20) echo "hello" spawn f1() |