We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 30889fe commit 209a450Copy full SHA for 209a450
test/runtests.jl
@@ -85,7 +85,10 @@ up_path = joinpath(@__DIR__, "UsesPreferences")
85
@test !haskey(prefs["UsesPreferences"], "__clear__")
86
87
# Now show that it forces recompilation
88
- did_precompile(output) = occursin("Precompiling UsesPreferences [$(string(up_uuid))]", output)
+ function did_precompile(output)
89
+ occursin("Precompiling UsesPreferences [$(string(up_uuid))]", output) ||
90
+ occursin("Precompiling\e[22m\e[39m UsesPreferences", output)
91
+ end
92
cuda_test = """
93
using UsesPreferences, Test
94
@test UsesPreferences.backend == "CUDA"
0 commit comments