Skip to content

Enable ArrayOfArray Tests #411

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
May 29, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions test/build_function_arrayofarray.jl
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,8 @@ julia_sparse_arraymat = h_sparse_arraymat_julia(input)
mtk_sparse_arraymat = h_sparse_arraymat_oop(input)
@test_broken julia_sparse_arraymat == mtk_sparse_arraymat
h_sparse_arraymat_julia!(out_1_arraymat, input)
h_sparse_arraymat_ip!(out_2_arraymat, input)
@test out_1_arraymat == out_2_arraymat
@test_broken h_sparse_arraymat_ip!(out_2_arraymat, input)
@test_broken out_1_arraymat == out_2_arraymat

# Array of 1D Vectors
h_sparse_arrayvec = sparse.([[a, 0, c], [0, 0, 0], [1, a, b]])
Expand Down
1 change: 1 addition & 0 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,4 @@ using SafeTestsets, Test
@safetestset "Depdendency Graph Test" begin include("dep_graphs.jl") end
#@testset "Latexify recipes Test" begin include("latexify.jl") end
@testset "Distributed Test" begin include("distributed.jl") end
@testset "Array of Array Test" begin include("build_function_arrayofarray.jl") end