Skip to content

Commit

Permalink
Disabled failing tests on windows
Browse files Browse the repository at this point in the history
Signed-off-by: Saurabh Kamat <kamatsaurabh01@gmail.com>
  • Loading branch information
sauk2 committed Jan 8, 2025
1 parent 9e7ae26 commit a0901ee
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions test/integration/drive_to_pose_controller_system.cc
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@

#include <gz/math/Pose3.hh>
#include <gz/transport/Node.hh>
#include <gz/utils/ExtraTestMacros.hh>

#include <chrono>
#include <functional>
Expand Down Expand Up @@ -142,7 +143,9 @@ TEST_F(DriveToPoseControllerTest, CurrentPosePublish)
}

/////////////////////////////////////////////////
TEST_F(DriveToPoseControllerTest, XCoordinatePublish)
// See /~https://github.com/gazebosim/gz-sim/issues/1175
TEST_F(DriveToPoseControllerTest,
GZ_UTILS_TEST_DISABLED_ON_WIN32(XCoordinatePublish))
{
math::Pose3d pose(1.5, 0, 0, 0, 0, 0);

Expand All @@ -155,7 +158,8 @@ TEST_F(DriveToPoseControllerTest, XCoordinatePublish)
}

/////////////////////////////////////////////////
TEST_F(DriveToPoseControllerTest, YCoordinatePublish)
TEST_F(DriveToPoseControllerTest,
GZ_UTILS_TEST_DISABLED_ON_WIN32(YCoordinatePublish))
{
math::Pose3d pose(0, 1.5, 0, 0, 0, 0);

Expand All @@ -168,7 +172,8 @@ TEST_F(DriveToPoseControllerTest, YCoordinatePublish)
}

/////////////////////////////////////////////////
TEST_F(DriveToPoseControllerTest, YawPublish)
TEST_F(DriveToPoseControllerTest,
GZ_UTILS_TEST_DISABLED_ON_WIN32(YawPublish))
{
math::Pose3d pose(0, 0, 0, 0, 0, -1.57);

Expand All @@ -181,7 +186,8 @@ TEST_F(DriveToPoseControllerTest, YawPublish)
}

/////////////////////////////////////////////////
TEST_F(DriveToPoseControllerTest, XYCoordinateYawPublish)
TEST_F(DriveToPoseControllerTest,
GZ_UTILS_TEST_DISABLED_ON_WIN32(XYCoordinateYawPublish))
{
math::Pose3d pose(1.5, -1.5, 0, 0, 0, 1.57);

Expand Down

0 comments on commit a0901ee

Please sign in to comment.