Skip to content

Commit 90a7ba7

Browse files
scpetersahcorde
andauthored
Enable tests on macOS (#2468)
They appear to be passing now. Signed-off-by: Steve Peters <scpeters@openrobotics.org> Co-authored-by: Alejandro Hernández Cordero <ahcorde@gmail.com>
1 parent 924607b commit 90a7ba7

8 files changed

+9
-9
lines changed

test/integration/actor_trajectory.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ class ActorFixture : public InternalFixture<InternalFixture<::testing::Test>>
9999
// Load the actor_trajectory.sdf world that animates a box (actor) to follow
100100
// a trajectory. Verify that the box pose changes over time on the rendering
101101
// side.
102-
TEST_F(ActorFixture, GZ_UTILS_TEST_DISABLED_ON_MAC(ActorTrajectoryNoMesh))
102+
TEST_F(ActorFixture, ActorTrajectoryNoMesh)
103103
{
104104
sim::ServerConfig serverConfig;
105105

test/integration/camera_sensor_background_from_scene.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ void cameraCb(const msgs::Image & _msg)
7777
/////////////////////////////////////////////////
7878
// Test sensors use the background color of <scene> by default
7979
TEST_F(CameraSensorBackgroundFixture,
80-
GZ_UTILS_TEST_DISABLED_ON_MAC(RedBackgroundFromScene))
80+
RedBackgroundFromScene)
8181
{
8282
const auto sdfFile = common::joinPaths(std::string(PROJECT_SOURCE_PATH),
8383
"test", "worlds", "camera_sensor_scene_background.sdf");

test/integration/sensors_system.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ void testDefaultTopics(const std::vector<std::string> &_topics)
183183
/////////////////////////////////////////////////
184184
/// This test checks that that the sensors system handles cases where entities
185185
/// are removed and then added back
186-
TEST_F(SensorsFixture, GZ_UTILS_TEST_DISABLED_ON_MAC(HandleRemovedEntities))
186+
TEST_F(SensorsFixture, HandleRemovedEntities)
187187
{
188188
gz::sim::ServerConfig serverConfig;
189189

test/integration/sensors_system_battery.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ class SensorsFixture : public InternalFixture<InternalFixture<::testing::Test>>
8383

8484
/////////////////////////////////////////////////
8585
// Battery
86-
TEST_F(SensorsFixture, GZ_UTILS_TEST_DISABLED_ON_MAC(SensorsBatteryState))
86+
TEST_F(SensorsFixture, SensorsBatteryState)
8787
{
8888
const auto sdfPath = common::joinPaths(std::string(PROJECT_SOURCE_PATH),
8989
"test", "worlds", "sensors_system_battery.sdf");

test/integration/sensors_system_update_rate.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ class SensorsFixture : public InternalFixture<InternalFixture<::testing::Test>>
7676
};
7777

7878
/////////////////////////////////////////////////
79-
TEST_F(SensorsFixture, GZ_UTILS_TEST_DISABLED_ON_MAC(UpdateRate))
79+
TEST_F(SensorsFixture, UpdateRate)
8080
{
8181
gz::sim::ServerConfig serverConfig;
8282

test/integration/thermal_sensor_system.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ void thermalCb(const msgs::Image &_msg)
7474

7575
/////////////////////////////////////////////////
7676
TEST_F(ThermalSensorTest,
77-
GZ_UTILS_TEST_DISABLED_ON_MAC(ThermalSensorSystemInvalidConfig))
77+
ThermalSensorSystemInvalidConfig)
7878
{
7979
// Start server
8080
ServerConfig serverConfig;

test/integration/thermal_system.cc

+2-2
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ class ThermalTest : public InternalFixture<::testing::Test>
4949
};
5050

5151
/////////////////////////////////////////////////
52-
TEST_F(ThermalTest, GZ_UTILS_TEST_DISABLED_ON_MAC(TemperatureComponent))
52+
TEST_F(ThermalTest, TemperatureComponent)
5353
{
5454
// Start server
5555
ServerConfig serverConfig;
@@ -173,7 +173,7 @@ TEST_F(ThermalTest, GZ_UTILS_TEST_DISABLED_ON_MAC(TemperatureComponent))
173173
}
174174

175175
/////////////////////////////////////////////////
176-
TEST_F(ThermalTest, GZ_UTILS_TEST_DISABLED_ON_MAC(ThermalSensorSystem))
176+
TEST_F(ThermalTest, ThermalSensorSystem)
177177
{
178178
// Start server
179179
ServerConfig serverConfig;

test/integration/wide_angle_camera.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ void imageCb(const msgs::Image &_msg)
6161

6262
/////////////////////////////////////////////////
6363
// The test checks the Wide Angle Camera readings
64-
TEST_F(WideAngleCameraTest, GZ_UTILS_TEST_DISABLED_ON_MAC(WideAngleCameraBox))
64+
TEST_F(WideAngleCameraTest, WideAngleCameraBox)
6565
{
6666
// Start server
6767
ServerConfig serverConfig;

0 commit comments

Comments
 (0)