Skip to content

Commit 5665483

Browse files
committed
More logical test ordering.
1 parent 9c0cfd2 commit 5665483

File tree

1 file changed

+14
-13
lines changed

1 file changed

+14
-13
lines changed

src/testsuite.jl

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -35,18 +35,18 @@ function against_base(f, Typ, sizes...)
3535
end
3636

3737

38-
include("testsuite/blas.jl")
39-
include("testsuite/broadcasting.jl")
4038
include("testsuite/construction.jl")
41-
include("testsuite/fft.jl")
4239
include("testsuite/gpuinterface.jl")
43-
include("testsuite/linalg.jl")
44-
include("testsuite/mapreduce.jl")
45-
include("testsuite/base.jl")
4640
include("testsuite/indexing.jl")
41+
include("testsuite/io.jl")
42+
include("testsuite/base.jl")
4743
include("testsuite/vector.jl")
44+
include("testsuite/mapreduce.jl")
45+
include("testsuite/broadcasting.jl")
46+
include("testsuite/linalg.jl")
47+
include("testsuite/fft.jl")
48+
include("testsuite/blas.jl")
4849
include("testsuite/random.jl")
49-
include("testsuite/io.jl")
5050

5151
function supported_eltypes()
5252
(Float32, Float64, Int32, Int64, ComplexF32, ComplexF64)
@@ -61,15 +61,16 @@ end
6161
Runs the entire GPUArrays test suite on array type `Typ`
6262
"""
6363
function test(Typ)
64+
TestSuite.test_construction(Typ)
6465
TestSuite.test_gpuinterface(Typ)
66+
TestSuite.test_indexing(Typ)
67+
TestSuite.test_io(Typ)
6568
TestSuite.test_base(Typ)
66-
TestSuite.test_blas(Typ)
69+
#TestSuite.test_vectors(Typ)
70+
TestSuite.test_mapreduce(Typ)
6771
TestSuite.test_broadcasting(Typ)
68-
TestSuite.test_construction(Typ)
69-
TestSuite.test_fft(Typ)
7072
TestSuite.test_linalg(Typ)
71-
TestSuite.test_mapreduce(Typ)
72-
TestSuite.test_indexing(Typ)
73-
#TestSuite.test_vectors(Typ)
73+
TestSuite.test_fft(Typ)
74+
TestSuite.test_blas(Typ)
7475
TestSuite.test_random(Typ)
7576
end

0 commit comments

Comments
 (0)