Skip to content

Commit 523cbfc

Browse files
committed
Bump ParallelTestRunner.
1 parent 5136798 commit 523cbfc

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

test/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ demumble_jll = "1e29f10c-031c-5a83-9565-69cddfc27673"
1717

1818
[compat]
1919
Aqua = "0.8"
20-
ParallelTestRunner = "0.1.2"
20+
ParallelTestRunner = "1"
2121

2222
[extras]
2323
GPUCompiler = "61eb1bfa-7361-4325-ad38-22787b887f55"

test/runtests.jl

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
using ParallelTestRunner
2-
import LLVM
1+
using ParallelTestRunner
2+
import GPUCompiler, LLVM
33

44
const 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
1616
end
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
3030
end
3131

32-
runtests(ARGS; init_code, testfilter)
32+
runtests(GPUCompiler, ARGS; init_code, test_filter)

0 commit comments

Comments
 (0)