diff --git a/test/example_lnodes.jl b/test/example_lnodes_2d.jl similarity index 100% rename from test/example_lnodes.jl rename to test/example_lnodes_2d.jl diff --git a/test/runtests.jl b/test/runtests.jl index cd51cdf..960f66f 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -45,4 +45,15 @@ if P4est_wrapper.P4EST_FOUND @show cmd run(cmd) end + @testset "Example lnodes 2D" begin + cmd = `$mpiexec -n $nprocs $(extra_args) $(julia) --project=$repodir $(joinpath(dir, "example_lnodes.jl"))` + @show cmd + run(cmd) + end + @testset "Example lnodes 3D" begin + cmd = `$mpiexec -n $nprocs $(extra_args) $(julia) --project=$repodir $(joinpath(dir, "example_lnodes_3d.jl"))` + @show cmd + run(cmd) + end + end