We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1a5f6ee commit 01ec937Copy full SHA for 01ec937
test/runtests.jl
@@ -1,6 +1,13 @@
1
-using GPUArrays, XUnit
+using GPUArrays
2
3
-@testset "GPUArrays" runner=ParallelTestRunner() begin
+try
4
+ using XUnit
5
+catch
6
+ using Test
7
+ @eval $(Symbol("@testcase")) = $(getfield(Test, Symbol("@testset")))
8
+end
9
+
10
+@testset "GPUArrays" begin
11
12
include("testsuite.jl")
13
test/testsuite.jl
@@ -8,7 +8,12 @@ export supported_eltypes
using GPUArrays
-using XUnit
14
15
16
17
18
using LinearAlgebra
19
using Random
0 commit comments