Skip to content

Commit bacb4c3

Browse files
Update jet.jl tests
1 parent 93db65d commit bacb4c3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/nopre/jet.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@ prob_sparse_spd = LinearProblem(A_sparse_spd, b)
2929
JET.@test_opt solve(prob, GenericLUFactorization())
3030
JET.@test_opt solve(prob, DiagonalFactorization())
3131
JET.@test_opt solve(prob, SimpleLUFactorization())
32-
JET.@test_opt solve(prob_spd, NormalCholeskyFactorization()) broken=true
32+
JET.@test_opt solve(prob_spd, NormalCholeskyFactorization())
3333
JET.@test_opt solve(prob, NormalBunchKaufmanFactorization())
3434

3535
# CholeskyFactorization and SVDFactorization now pass JET tests
36-
JET.@test_opt solve(prob_spd, CholeskyFactorization()) broken=true
37-
JET.@test_opt solve(prob, SVDFactorization()) broken=true
36+
JET.@test_opt solve(prob_spd, CholeskyFactorization())
37+
JET.@test_opt solve(prob, SVDFactorization())
3838

3939
# Tests with known type stability issues - marked as broken
4040
JET.@test_opt solve(prob, QRFactorization()) broken=true
@@ -107,4 +107,4 @@ end
107107
# Test the default solver selection
108108
JET.@test_opt solve(prob) broken=true
109109
JET.@test_opt solve(prob_sparse) broken=true
110-
end
110+
end

0 commit comments

Comments
 (0)