Skip to content

Commit 5e280a6

Browse files
authored
Disable a couple of tests on windows (#1126)
Disables these tests on windows: * MeshTest.NormalMapWithoutTexCoord/ogre *ThermalCameraTest.ThermalCameraBoxesHeatSignature/ogre2 Signed-off-by: Ian Chen <[email protected]>
1 parent e3105a3 commit 5e280a6

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

test/integration/mesh.cc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,11 @@ class MeshTest: public CommonRenderingTest
4242
/////////////////////////////////////////////////
4343
TEST_F(MeshTest, NormalMapWithoutTexCoord)
4444
{
45+
#if defined _WIN32
46+
// https://github.com/gazebosim/gz-rendering/issues/1117
47+
CHECK_UNSUPPORTED_ENGINE("ogre");
48+
#endif
49+
4550
// Create a mesh with 2 submeshes - one with red texture and the other with
4651
// green texture. Add texcoords to the red submesh but not the green submesh.
4752
// Verify that we can set normal map to the red submesh and the two

test/integration/thermal_camera.cc

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,9 @@ TEST_F(ThermalCameraTest,
217217
}
218218

219219
//////////////////////////////////////////////////
220-
TEST_F(ThermalCameraTest, ThermalCameraBoxesHeatSignature)
220+
// Test dsiabled on win: https://github.com/gazebosim/gz-rendering/issues/1109
221+
TEST_F(ThermalCameraTest,
222+
GZ_UTILS_TEST_DISABLED_ON_WIN32(ThermalCameraBoxesHeatSignature))
221223
{
222224
CHECK_UNSUPPORTED_ENGINE("optix"); // Optix does not support thermal
223225
CHECK_SUPPORTED_ENGINE("ogre2"); // Only OGRE2 supports heat signatures

0 commit comments

Comments
 (0)