We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f2b5b6e commit c79309bCopy full SHA for c79309b
test/cmdlineargs.jl
@@ -206,6 +206,9 @@ let exename = `$(Base.julia_cmd()) --startup-file=no --color=no`
206
# We want to test oversubscription, but on manycore machines, this can
207
# actually exhaust limited PID spaces
208
cpu_threads = max(2*cpu_threads, min(50, 10*cpu_threads))
209
+ if Sys.WORD_SIZE == 32
210
+ cpu_threads = min(cpu_threads, 50)
211
+ end
212
@test read(`$exename -t $cpu_threads -e $code`, String) == string(cpu_threads)
213
withenv("JULIA_NUM_THREADS" => string(cpu_threads)) do
214
@test read(`$exename -e $code`, String) == string(cpu_threads)
0 commit comments