Skip to content

Commit

Permalink
The meshes for these input files only have 1 element, so they don't w…
Browse files Browse the repository at this point in the history
…ork if you try to run them in parallel with ParallelMesh. Therefore, restrict these tests to using SerialMesh.

Refs #2105.

r20854
  • Loading branch information
John Peterson authored and permcody committed Feb 14, 2014
1 parent f3bb97b commit 7db6e8a
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 0 deletions.
Expand Up @@ -21,6 +21,10 @@
# At time = 0, the variable = 0, at time = 1, variable = 4 and so on.
[Mesh]
file = cube.e
# This problem only has 1 element, so using ParallelMesh in parallel
# isn't really an option, and we don't care that much about ParallelMesh
# in serial.
distribution = serial
[]

[Variables]
Expand Down
Expand Up @@ -98,6 +98,10 @@
#
[Mesh]
file = cube.e
# This problem only has 1 element, so using ParallelMesh in parallel
# isn't really an option, and we don't care that much about ParallelMesh
# in serial.
distribution = serial
[]

[Variables]
Expand Down
@@ -1,5 +1,9 @@
[Mesh]
file = curvi.e
# This mesh only has one element. It does seem to work if you
# use SerialMesh on two processors, but it hangs with ParallelMesh
# on two processors.
distribution = serial
[]

[Variables]
Expand Down
4 changes: 4 additions & 0 deletions test/tests/variables/fe_hermite/hermite-3-3d.i
Expand Up @@ -11,6 +11,10 @@
ny = 1
nz = 1
elem_type = HEX27
# This problem only has 1 element, so using ParallelMesh in parallel
# isn't really an option, and we don't care that much about ParallelMesh
# in serial.
distribution = serial
[]

[Functions]
Expand Down
4 changes: 4 additions & 0 deletions test/tests/variables/fe_hier/hier-2-3d.i
Expand Up @@ -11,6 +11,10 @@
ny = 1
nz = 1
elem_type = HEX27
# This problem only has 1 element, so using ParallelMesh in parallel
# isn't really an option, and we don't care that much about ParallelMesh
# in serial.
distribution = serial
[]

[Functions]
Expand Down
4 changes: 4 additions & 0 deletions test/tests/variables/fe_hier/hier-3-3d.i
Expand Up @@ -11,6 +11,10 @@
ny = 1
nz = 1
elem_type = HEX27
# This problem only has 1 element, so using ParallelMesh in parallel
# isn't really an option, and we don't care that much about ParallelMesh
# in serial.
distribution = serial
[]

[Functions]
Expand Down

0 comments on commit 7db6e8a

Please sign in to comment.