Skip to content

Commit 7f0056e

Browse files
committed
Disable other tests for now
1 parent 1ee90f7 commit 7f0056e

File tree

2 files changed

+42
-42
lines changed

2 files changed

+42
-42
lines changed

test/runtests.jl

+6-6
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,9 @@ struct NewBackend <: KernelAbstractions.GPU end
7373
end
7474

7575

76-
include("extensions/enzyme.jl")
77-
@static if VERSION >= v"1.7.0"
78-
@testset "Enzyme" begin
79-
enzyme_testsuite(CPU, Array)
80-
end
81-
end
76+
# include("extensions/enzyme.jl")
77+
# @static if VERSION >= v"1.7.0"
78+
# @testset "Enzyme" begin
79+
# enzyme_testsuite(CPU, Array)
80+
# end
81+
# end

test/testsuite.jl

+36-36
Original file line numberDiff line numberDiff line change
@@ -40,53 +40,53 @@ include("convert.jl")
4040
include("specialfunctions.jl")
4141

4242
function testsuite(backend, backend_str, backend_mod, AT, DAT; skip_tests = Set{String}())
43-
@conditional_testset "Unittests" skip_tests begin
44-
unittest_testsuite(backend, backend_str, backend_mod, DAT; skip_tests)
45-
end
43+
# @conditional_testset "Unittests" skip_tests begin
44+
# unittest_testsuite(backend, backend_str, backend_mod, DAT; skip_tests)
45+
# end
4646

47-
@conditional_testset "SpecialFunctions" skip_tests begin
48-
specialfunctions_testsuite(backend)
49-
end
47+
# @conditional_testset "SpecialFunctions" skip_tests begin
48+
# specialfunctions_testsuite(backend)
49+
# end
5050

51-
@conditional_testset "Localmem" skip_tests begin
52-
localmem_testsuite(backend, AT)
53-
end
51+
# @conditional_testset "Localmem" skip_tests begin
52+
# localmem_testsuite(backend, AT)
53+
# end
5454

55-
@conditional_testset "Private" skip_tests begin
56-
private_testsuite(backend, AT)
57-
end
55+
# @conditional_testset "Private" skip_tests begin
56+
# private_testsuite(backend, AT)
57+
# end
5858

59-
@conditional_testset "Unroll" skip_tests begin
60-
unroll_testsuite(backend, AT)
61-
end
59+
# @conditional_testset "Unroll" skip_tests begin
60+
# unroll_testsuite(backend, AT)
61+
# end
6262

63-
@testset "NDIteration" begin
64-
nditeration_testsuite()
65-
end
63+
# @testset "NDIteration" begin
64+
# nditeration_testsuite()
65+
# end
6666

67-
@conditional_testset "copyto!" skip_tests begin
68-
copyto_testsuite(backend, AT)
69-
end
67+
# @conditional_testset "copyto!" skip_tests begin
68+
# copyto_testsuite(backend, AT)
69+
# end
7070

71-
@conditional_testset "Devices" skip_tests begin
72-
devices_testsuite(backend)
73-
end
71+
# @conditional_testset "Devices" skip_tests begin
72+
# devices_testsuite(backend)
73+
# end
7474

75-
@conditional_testset "Printing" skip_tests begin
76-
printing_testsuite(backend)
77-
end
75+
# @conditional_testset "Printing" skip_tests begin
76+
# printing_testsuite(backend)
77+
# end
7878

79-
@conditional_testset "Compiler" skip_tests begin
80-
compiler_testsuite(backend, AT)
81-
end
79+
# @conditional_testset "Compiler" skip_tests begin
80+
# compiler_testsuite(backend, AT)
81+
# end
8282

83-
@conditional_testset "Reflection" skip_tests begin
84-
reflection_testsuite(backend, backend_str, AT)
85-
end
83+
# @conditional_testset "Reflection" skip_tests begin
84+
# reflection_testsuite(backend, backend_str, AT)
85+
# end
8686

87-
@conditional_testset "Convert" skip_tests begin
88-
convert_testsuite(backend, AT)
89-
end
87+
# @conditional_testset "Convert" skip_tests begin
88+
# convert_testsuite(backend, AT)
89+
# end
9090

9191
@conditional_testset "Examples" skip_tests begin
9292
examples_testsuite(backend, backend_str)

0 commit comments

Comments
 (0)