Skip to content

Commit 45325c8

Browse files
committed
Don't run Jacobi on 1.10
1 parent 3fd2b11 commit 45325c8

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

test/svd.jl

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,9 @@ for T in (BLASFloats..., GenericFloats...), m in (0, 54), n in (0, 37, m, 63)
5555
)
5656
TestSuite.test_svd(T, (m, n))
5757
TestSuite.test_svd_algs(T, (m, n), LAPACK_SVD_ALGS)
58-
m n && TestSuite.test_svd_algs(T, (m, n), (LAPACK_Jacobi(),); test_full = false, test_vals = false)
58+
@static if VERSION > v"1.11-" # Jacobi broken on 1.10
59+
m n && TestSuite.test_svd_algs(T, (m, n), (LAPACK_Jacobi(),); test_full = false, test_vals = false)
60+
end
5961
elseif T GenericFloats
6062
TestSuite.test_svd(T, (m, n))
6163
TestSuite.test_svd_algs(T, (m, n), (GLA_QRIteration(),))

0 commit comments

Comments
 (0)