Skip to content

Commit

Permalink
Remove latent chol[!] tests to address CI failures.
Browse files Browse the repository at this point in the history
  • Loading branch information
Sacha0 committed May 26, 2018
1 parent 329e605 commit 0053809
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions stdlib/LinearAlgebra/test/cholesky.jl
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ end

@testset "throw for non-square input" begin
A = rand(eltya, 2, 3)
@test_throws DimensionMismatch LinearAlgebra.chol!(A)
@test_throws DimensionMismatch cholesky(A)
@test_throws DimensionMismatch cholesky!(A)
end
Expand All @@ -87,7 +86,6 @@ end

apos = apd[1,1]
@test all(x -> x apos, cholesky(apos).factors)
@test_throws PosDefException cholesky(-one(eltya))

# Test cholesky with Symmetric/Hermitian upper/lower
apds = Symmetric(apd)
Expand Down Expand Up @@ -263,7 +261,6 @@ end
for A in (R, C)
@test !LinearAlgebra.issuccess(cholesky(A))
@test !LinearAlgebra.issuccess(cholesky!(copy(A)))
@test_throws PosDefException LinearAlgebra.chol!(copy(A))
end
end

Expand Down

0 comments on commit 0053809

Please sign in to comment.