Skip to content

Commit 1c97106

Browse files
committed
More coverage
1 parent ccf8cd4 commit 1c97106

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/runtests.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ end
1818
@testset "Test LU factorization" begin
1919
for _p in (true, false), T in (Float64, Float32, ComplexF64, ComplexF32, Real)
2020
p = Val(_p)
21-
for s in [1:10; 50:80:200; 300]
21+
for (i, s) in enumerate([1:10; 50:80:200; 300])
22+
iseven(i) && (p = RecursiveFactorization.to_stdlib_pivot(p))
2223
siz = (s, s+2)
2324
@info("size: $(siz[1]) × $(siz[2]), T = $T, p = $_p")
2425
if isconcretetype(T)

0 commit comments

Comments
 (0)