diff --git a/test/ConstantFESpacesTests.jl b/test/ConstantFESpacesTests.jl index 7623981..df65eb9 100644 --- a/test/ConstantFESpacesTests.jl +++ b/test/ConstantFESpacesTests.jl @@ -1,3 +1,5 @@ +module ConstantFESpacesTests + using Test using Gridap using GridapDistributed, PartitionedArrays @@ -33,6 +35,4 @@ function main(distribute,np) A2 = assemble_matrix(a,X2,X2) end -with_debug() do distribute - main(distribute,(2,2)) end diff --git a/test/mpi/runtests_np4_body.jl b/test/mpi/runtests_np4_body.jl index 355f662..fe5e475 100644 --- a/test/mpi/runtests_np4_body.jl +++ b/test/mpi/runtests_np4_body.jl @@ -54,5 +54,10 @@ function all_tests(distribute,parts) TestApp.BlockSparseMatrixAssemblersTests.main(distribute,parts) PArrays.toc!(t,"BlockSparseMatrixAssemblers") + if prod(parts) == 4 + TestApp.ConstantFESpacesTests.main(distribute,parts) + PArrays.toc!(t,"ConstantFESpaces") + end + display(t) end diff --git a/test/sequential/ConstantFESpacesTests.jl b/test/sequential/ConstantFESpacesTests.jl new file mode 100644 index 0000000..66ae51d --- /dev/null +++ b/test/sequential/ConstantFESpacesTests.jl @@ -0,0 +1,10 @@ +module ConstantFESpacesTestsSeq + +using PartitionedArrays +include("../ConstantFESpacesTests.jl") + +with_debug() do distribute + ConstantFESpacesTests.main(distribute,(2,2)) +end + +end