From fc162727e82a5512eb29b1882fb17f7b90910d7c Mon Sep 17 00:00:00 2001 From: Daniel Bruegmann Date: Sat, 27 Feb 2021 21:22:55 +0100 Subject: [PATCH] [DO NOT MERGE] Investigate 32-bit test failure. --- test/cmdlineargs.jl | 1 + 1 file changed, 1 insertion(+) diff --git a/test/cmdlineargs.jl b/test/cmdlineargs.jl index 3017a33d2672c..3187f68292dc2 100644 --- a/test/cmdlineargs.jl +++ b/test/cmdlineargs.jl @@ -206,6 +206,7 @@ let exename = `$(Base.julia_cmd()) --startup-file=no --color=no` # We want to test oversubscription, but on manycore machines, this can # actually exhaust limited PID spaces cpu_threads = max(2*cpu_threads, min(50, 10*cpu_threads)) + println("cpu_threads = ", cpu_threads, ", Sys.WORD_SIZE = ", Sys.WORD_SIZE) @test read(`$exename -t $cpu_threads -e $code`, String) == string(cpu_threads) withenv("JULIA_NUM_THREADS" => string(cpu_threads)) do @test read(`$exename -e $code`, String) == string(cpu_threads)