Skip to content

Commit 00871ab

Browse files
committed
test: see which testset fails
1 parent 8daec65 commit 00871ab

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/testsuite/random.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
cpu_rng = Random.default_rng()
88

99
@testset "rand" begin # uniform
10-
for T in eltypes, d in (10, (10, 10), (128, 128))
10+
for T in eltypes, d in (10, (10,10))
1111
A = AT{T}(undef, d)
1212
B = copy(A)
1313
rand!(rng, A)
@@ -44,7 +44,7 @@
4444
@testset "randn" begin # normally-distributed
4545
# XXX: randn calls sqrt, and Base's sqrt(::Complex) performs
4646
# checked type conversions that throw boxed numbers.
47-
for T in filter(isrealfloattype, eltypes), d in (2, (2,2))
47+
for T in filter(isrealfloattype, eltypes), d in (2, (2, 2), (128, 128))
4848
A = AT{T}(undef, d)
4949
B = copy(A)
5050
randn!(rng, A)

0 commit comments

Comments
 (0)