We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 01c33e9 commit abafb79Copy full SHA for abafb79
test/threads.jl
@@ -48,8 +48,8 @@ isfailed(rr) = fetch_from_owner(istaskfailed, rr)
48
# timedwait() instead of @sync to avoid deadlocks.
49
t1 = Threads.@spawn fetch_from_owner(wait, recv)
50
t2 = Threads.@spawn fetch_from_owner(wait, send)
51
- @test timedwait(() -> istaskdone(t1), 5) == :ok
52
- @test timedwait(() -> istaskdone(t2), 5) == :ok
+ @test timedwait(() -> istaskdone(t1), 60) == :ok
+ @test timedwait(() -> istaskdone(t2), 60) == :ok
53
54
# Check the tasks
55
@test isdone(send)
0 commit comments