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 867d80d commit edf5486Copy full SHA for edf5486
test/testenv.jl
@@ -17,6 +17,9 @@ if !@isdefined(testenv_defined)
17
push!(test_exeflags.exec, "--check-bounds=yes")
18
push!(test_exeflags.exec, "--startup-file=no")
19
push!(test_exeflags.exec, "--depwarn=error")
20
+ if Base.JLOptions().use_sysimage_native_code == 0
21
+ push!(test_exeflags.exec, "--sysimage-native-code=no")
22
+ end
23
end
24
if haskey(ENV, "JULIA_TEST_EXTRA_EXEFLAGS")
25
append!(test_exeflags.exec, Base.shell_split(ENV["JULIA_TEST_EXTRA_EXEFLAGS"]))
0 commit comments