File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed
Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ demumble_jll = "1e29f10c-031c-5a83-9565-69cddfc27673"
1717
1818[compat ]
1919Aqua = " 0.8"
20- ParallelTestRunner = " 0.1.2 "
20+ ParallelTestRunner = " 1 "
2121
2222[extras ]
2323GPUCompiler = " 61eb1bfa-7361-4325-ad38-22787b887f55"
Original file line number Diff line number Diff line change 1- using ParallelTestRunner
2- import LLVM
1+ using ParallelTestRunner
2+ import GPUCompiler, LLVM
33
44const init_code = quote
5- using Test, GPUCompiler, LLVM
5+ using GPUCompiler, LLVM
66 using SPIRV_LLVM_Backend_jll, SPIRV_LLVM_Translator_jll, SPIRV_Tools_jll
77
88 # include all helpers
@@ -15,18 +15,18 @@ const init_code = quote
1515 using . FileCheck
1616end
1717
18- function testfilter (test)
18+ function test_filter (test)
1919 if startswith (test, " helpers/" )
2020 return false
2121 end
22- if LLVM. is_asserts () && test == " gcn"
22+ if LLVM. is_asserts () && test == " gcn"
2323 # XXX : GCN's non-0 stack address space triggers LLVM assertions due to Julia bugs
2424 return false
2525 end
2626 if VERSION < v " 1.11" && test in (" ptx/precompile" , " native/precompile" )
27- return false
27+ return false
2828 end
2929 return true
3030end
3131
32- runtests (ARGS ; init_code, testfilter )
32+ runtests (GPUCompiler, ARGS ; init_code, test_filter )
You can’t perform that action at this time.
0 commit comments