Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Disable GPU lidar tests on macOS #163

Merged
merged 1 commit into from
Oct 6, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions test/integration/gpu_lidar_sensor.cc
Original file line number Diff line number Diff line change
Expand Up @@ -901,31 +901,51 @@ void GpuLidarSensorTest::Topic(const std::string &_renderEngine)
}

/////////////////////////////////////////////////
#ifdef __APPLE__
TEST_P(GpuLidarSensorTest, DISABLED_CreateGpuLidar)
#else
TEST_P(GpuLidarSensorTest, CreateGpuLidar)
#endif
{
CreateGpuLidar(GetParam());
}

/////////////////////////////////////////////////
#ifdef __APPLE__
TEST_P(GpuLidarSensorTest, DISABLED_DetectBox)
#else
TEST_P(GpuLidarSensorTest, DetectBox)
#endif
{
DetectBox(GetParam());
}

/////////////////////////////////////////////////
#ifdef __APPLE__
TEST_P(GpuLidarSensorTest, DISABLED_TestThreeBoxes)
#else
TEST_P(GpuLidarSensorTest, TestThreeBoxes)
#endif
{
TestThreeBoxes(GetParam());
}

/////////////////////////////////////////////////
#ifdef __APPLE__
TEST_P(GpuLidarSensorTest, DISABLED_VerticalLidar)
#else
TEST_P(GpuLidarSensorTest, VerticalLidar)
#endif
{
VerticalLidar(GetParam());
}

/////////////////////////////////////////////////
#ifdef __APPLE__
TEST_P(GpuLidarSensorTest, DISABLED_ManualUpdate)
#else
TEST_P(GpuLidarSensorTest, ManualUpdate)
#endif
{
ManualUpdate(GetParam());
}
Expand Down