We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b13c255 commit 5c2f46aCopy full SHA for 5c2f46a
tests/mesh/boundary_info.C
@@ -66,8 +66,10 @@ public:
66
std::vector<boundary_id_type> bc_id_list;
67
bi.build_side_list (element_id_list, side_list, bc_id_list);
68
69
- // Check that there are now exactly 6 sides left in the BoundaryInfo
70
- CPPUNIT_ASSERT_EQUAL(static_cast<std::size_t>(6), element_id_list.size());
+ // Check that there are now exactly 6 sides left in the
+ // BoundaryInfo for a replicated mesh
71
+ if (_mesh->is_serial())
72
+ CPPUNIT_ASSERT_EQUAL(static_cast<std::size_t>(6), element_id_list.size());
73
74
// Remove the same id again, make sure nothing changes.
75
bi.remove_id(0);
0 commit comments