Skip to content

Commit fd8f36d

Browse files
authored
Skip SPIRV tests if tooling is not available (#542)
1 parent ac051f3 commit fd8f36d

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

test/runtests.jl

+7
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ GPUCompiler.reset_runtime()
44
using InteractiveUtils
55
@info "System information:\n" * sprint(io->versioninfo(io; verbose=true))
66

7+
import SPIRV_LLVM_Translator_unified_jll
8+
import SPIRV_Tools_jll
9+
710
using ReTestItems
811
runtests(GPUCompiler; nworkers=min(Sys.CPU_THREADS,4), nworker_threads=1,
912
testitem_timeout=120) do ti
@@ -24,5 +27,9 @@ runtests(GPUCompiler; nworkers=min(Sys.CPU_THREADS,4), nworker_threads=1,
2427
return false
2528
end
2629

30+
if ti.name in ["SPIRV"] && !(SPIRV_LLVM_Translator_unified_jll.is_available() && SPIRV_Tools_jll.is_available())
31+
# SPIRV needs it's tools to be available
32+
return false
33+
end
2734
true
2835
end

0 commit comments

Comments
 (0)