diff --git a/test/static_arrays.jl b/test/static_arrays.jl index 01e33c84..5c93f3f7 100644 --- a/test/static_arrays.jl +++ b/test/static_arrays.jl @@ -18,12 +18,8 @@ for alg in (nothing, LUFactorization(), SVDFactorization(), CholeskyFactorizatio @inferred solve(LinearProblem(A, b), alg) @test norm(A * sol .- b) < 1e-10 - if __non_native_static_array_alg(alg) - @test_broken __solve_no_alloc(A, b, alg) isa SciMLBase.LinearSolution - else - @test_nowarn __solve_no_alloc(A, b, alg) isa SciMLBase.LinearSolution - end - + @show alg + @test_nowarn __solve_no_alloc(A, b, alg) isa SciMLBase.LinearSolution cache = init(LinearProblem(A, b), alg) sol = solve!(cache) @test norm(A * sol .- b) < 1e-10