Skip to content
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

Restrict setup_interface_count tests to serial #9423

Merged
merged 1 commit into from Jun 30, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
15 changes: 13 additions & 2 deletions test/tests/userobjects/setup_interface_count/tests
@@ -1,8 +1,15 @@
# The following tests are designed to count how often the setup methods are called (initialSetup, etc.),
# which requires that the threading be disabeled because the counts can differ.
#
# Also, GeneralUserObject must also be restricted for a certain MPI because their methods will be called
# on each processor, since they are not distributed in any fashion.
# GeneralUserObject must also be restricted for a certain MPI because
# their methods will be called on each processor, since they are not
# distributed in any fashion.
#
# Other UserObject tests here include a subdomainSetup count, which
# depends on the number of transitions between subdomains while
# iterating over local elements, which depend on how mesh
# partitioning assigns local elements. We'll just run them all in
# serial.
[Tests]
[./GeneralUserObject]
type = CSVDiff
Expand All @@ -17,23 +24,27 @@
input = element.i
csvdiff = element_out.csv
max_threads = 1
max_parallel = 1
[../]
[./SideUserObject]
type = CSVDiff
input = side.i
csvdiff = side_out.csv
max_threads = 1
max_parallel = 1
[../]
[./InternalSideUserObject]
type = CSVDiff
input = internal_side.i
csvdiff = internal_side_out.csv
max_threads = 1
max_parallel = 1
[../]
[./NodalSideUserObject]
type = CSVDiff
input = nodal.i
csvdiff = nodal_out.csv
max_threads = 1
max_parallel = 1
[../]
[]