diff --git a/test/CartesianAdaptivityTests.jl b/test/CartesianAdaptivityTests.jl index 5869f2b..3c2194c 100644 --- a/test/CartesianAdaptivityTests.jl +++ b/test/CartesianAdaptivityTests.jl @@ -133,7 +133,7 @@ function main(distribute,ncells,isperiodic) coarse_ranks = generate_subparts(fine_ranks,2) map_main(fine_ranks) do r - println("Test: ncells = ", ncells, ", isperiodic = ", isperiodic) + println("CartesianAdaptivityTests: ncells = ", ncells, ", isperiodic = ", isperiodic) end # Create models and glues diff --git a/test/sequential/AdaptivityTests.jl b/test/sequential/AdaptivityTests.jl new file mode 100644 index 0000000..b858f73 --- /dev/null +++ b/test/sequential/AdaptivityTests.jl @@ -0,0 +1,10 @@ +module AdaptivityTestsSeq + +using PartitionedArrays + +include("../CartesianAdaptivityTests.jl") +with_debug() do distribute + CartesianAdaptivityTests.main(distribute) +end + +end # module \ No newline at end of file diff --git a/test/sequential/runtests.jl b/test/sequential/runtests.jl index dc1a6c0..d9285ff 100644 --- a/test/sequential/runtests.jl +++ b/test/sequential/runtests.jl @@ -40,4 +40,8 @@ end include("BlockSparseMatrixAssemblersTests.jl") end +@time @testset "AdaptivityTests" begin + include("AdaptivityTests.jl") +end + end # module