We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 376b9ef commit 8263153Copy full SHA for 8263153
1 file changed
test/runtests.jl
@@ -17,16 +17,15 @@ end
17
18
19
# choose tests
20
-tests = find_tests(@__DIR__)
21
-
+testsuite = find_tests(@__DIR__)
22
## GPUArrays test suite
23
import GPUArrays
24
gpuarrays = pathof(GPUArrays)
25
gpuarrays_root = dirname(dirname(gpuarrays))
26
gpuarrays_testsuite = joinpath(gpuarrays_root, "test", "testsuite.jl")
27
include(gpuarrays_testsuite)
28
for name in keys(TestSuite.tests)
29
- tests["gpuarrays/$name"] = :(TestSuite.tests[$name](MtlArray))
+ testsuite["gpuarrays/$name"] = :(TestSuite.tests[$name](oneArray))
30
end
31
32
args = parse_args(ARGS)
@@ -108,4 +107,4 @@ init_code = quote
108
107
..@grab_output, ..@on_device, ..sink
109
110
111
-runtests(oneAPI, args; tests, init_code, init_worker_code)
+runtests(oneAPI, args; testsuite, init_code, init_worker_code)
0 commit comments