Skip to content

Commit

Permalink
fix missing plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
alxbilger committed Nov 29, 2024
1 parent 30f6113 commit c2e9e7c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ TEST(HyperelasticForcefield, Hexahedron_from_SOFA) {
auto root = getSimulation()->createNewNode("root");
createObject(root, "DefaultAnimationLoop");
createObject(root, "DefaultVisualManagerLoop");
createObject(root, "RequiredPlugin", {{"pluginName", "Sofa.Component.StateContainer"}});
createObject(root, "RequiredPlugin", {{"pluginName", "Sofa.Component.Constraint.Projective"}});
createObject(root, "RequiredPlugin", {{"pluginName", "Sofa.Component.Engine.Select"}});
createObject(root, "RequiredPlugin", {{"pluginName", "Sofa.Component.Topology.Container.Grid"}});
Expand Down
2 changes: 2 additions & 0 deletions unittest/SofaCaribou/Mass/test_cariboumass.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,9 @@ TEST(CaribouMass, LinearTetrahedron) {
EXPECT_MSG_NOEMIT(Error);

auto root = getSimulation()->createNewNode("root");
createObject(root, "RequiredPlugin", {{"pluginName", "Sofa.Component.Mass"}});
createObject(root, "RequiredPlugin", {{"pluginName", "Sofa.Component.Engine.Select"}});
createObject(root, "RequiredPlugin", {{"pluginName", "Sofa.Component.Topology.Container.Grid"}});
createObject(root, "RequiredPlugin", {{"pluginName", "Sofa.Component.Topology.Mapping"}});

// Some component to avoid warnings
Expand Down

0 comments on commit c2e9e7c

Please sign in to comment.