You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: test/processors.jl
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -37,9 +37,9 @@ end
37
37
end
38
38
@testset"Processor exhaustion"begin
39
39
opts =ThunkOptions(proclist=[OptOutProc])
40
-
@test_throws_unwrap Dagger.ThunkFailedException ex isa Dagger.Sch.SchedulingException ex.reason="No processors available, try making proclist more liberal"collect(delayed(sum; options=opts)([1,2,3]))
40
+
@test_throws_unwrap Dagger.ThunkFailedException ex isa Dagger.Sch.SchedulingException ex.reason="No processors available, try widening scope"collect(delayed(sum; options=opts)([1,2,3]))
41
41
opts =ThunkOptions(proclist=(proc)->false)
42
-
@test_throws_unwrap Dagger.ThunkFailedException ex isa Dagger.Sch.SchedulingException ex.reason="No processors available, try making proclist more liberal"collect(delayed(sum; options=opts)([1,2,3]))
42
+
@test_throws_unwrap Dagger.ThunkFailedException ex isa Dagger.Sch.SchedulingException ex.reason="No processors available, try widening scope"collect(delayed(sum; options=opts)([1,2,3]))
0 commit comments