Skip to content

Commit

Permalink
fixing CI
Browse files Browse the repository at this point in the history
Signed-off-by: Ian Chen <[email protected]>
  • Loading branch information
iche033 committed Feb 10, 2021
1 parent c830f45 commit d56d772
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
4 changes: 2 additions & 2 deletions test/integration/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,6 @@ set(tests
scene_broadcaster_system.cc
sdf_frame_semantics.cc
sdf_include.cc
thermal_system.cc
thermal_sensor_system.cc
touch_plugin.cc
triggered_publisher.cc
user_commands.cc
Expand All @@ -61,6 +59,8 @@ set(tests_needing_display
gpu_lidar.cc
rgbd_camera.cc
sensors_system.cc
thermal_system.cc
thermal_sensor_system.cc
)

# Add systems that need a valid display here.
Expand Down
4 changes: 3 additions & 1 deletion test/integration/thermal_sensor_system.cc
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
#include <ignition/common/Console.hh>
#include <ignition/common/Filesystem.hh>
#include <ignition/transport/Node.hh>
#include <ignition/utilities/ExtraTestMacros.hh>

#include "ignition/gazebo/components/Name.hh"
#include "ignition/gazebo/components/Temperature.hh"
Expand Down Expand Up @@ -72,7 +73,8 @@ void thermalCb(const msgs::Image &_msg)
}

/////////////////////////////////////////////////
TEST_F(ThermalSensorTest, ThermalSensorSystemInvalidConfig)
TEST_F(ThermalSensorTest,
IGN_UTILS_TEST_DISABLED_ON_MAC(ThermalSensorSystemInvalidConfig))
{
// Start server
ServerConfig serverConfig;
Expand Down
5 changes: 3 additions & 2 deletions test/integration/thermal_system.cc
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
#include <ignition/common/Filesystem.hh>
#include <ignition/math/Pose3.hh>
#include <ignition/transport/Node.hh>
#include <ignition/utilities/ExtraTestMacros.hh>

#include "ignition/gazebo/components/Name.hh"
#include "ignition/gazebo/components/SourceFilePath.hh"
Expand Down Expand Up @@ -53,7 +54,7 @@ class ThermalTest : public ::testing::Test
};

/////////////////////////////////////////////////
TEST_F(ThermalTest, TemperatureComponent)
TEST_F(ThermalTest, IGN_UTILS_TEST_DISABLED_ON_MAC(TemperatureComponent))
{
// Start server
ServerConfig serverConfig;
Expand Down Expand Up @@ -177,7 +178,7 @@ TEST_F(ThermalTest, TemperatureComponent)
}

/////////////////////////////////////////////////
TEST_F(ThermalTest, ThermalSensorSystem)
TEST_F(ThermalTest, IGN_UTILS_TEST_DISABLED_ON_MAC(ThermalSensorSystem))
{
// Start server
ServerConfig serverConfig;
Expand Down

0 comments on commit d56d772

Please sign in to comment.