Skip to content

Commit bd372e1

Browse files
committed
dfg
1 parent 4b6113b commit bd372e1

2 files changed

Lines changed: 5 additions & 4 deletions

File tree

test/runtests.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ end
7272
using Aqua
7373
Aqua.test_all(AK)
7474
end
75-
75+
@testset "the rest" begin
7676
include("partition.jl")
7777
include("looping.jl")
7878
include("map.jl")
@@ -81,3 +81,4 @@ include("reduce.jl")
8181
include("accumulate.jl")
8282
include("predicates.jl")
8383
include("binarysearch.jl")
84+
end

test/sort.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ if !IS_CPU_BACKEND || !prefer_threads
151151
Random.seed!(0)
152152

153153
# Fuzzy correctness testing
154-
for _ in 1:1000
154+
for _ in 1:1#000
155155
num_elems = rand(1:100_000)
156156
k = array_from_host(rand(Int32, num_elems))
157157
v = copy(k) .- 1
@@ -162,7 +162,7 @@ if !IS_CPU_BACKEND || !prefer_threads
162162
@test issorted(vh)
163163
end
164164

165-
for _ in 1:1000
165+
for _ in 1:1#000
166166
num_elems = rand(1:100_000)
167167
k = array_from_host(rand(UInt32, num_elems))
168168
v = copy(k) .- 1
@@ -173,7 +173,7 @@ if !IS_CPU_BACKEND || !prefer_threads
173173
@test issorted(vh)
174174
end
175175

176-
for _ in 1:1000
176+
for _ in 1:1#000
177177
num_elems = rand(1:100_000)
178178
k = array_from_host(rand(Float32, num_elems))
179179
v = copy(k) .- 1

0 commit comments

Comments
 (0)