diff --git a/tests/engine/layer/LayerStack.test.cpp b/tests/engine/layer/LayerStack.test.cpp index 9ffd2ee0..a6384041 100644 --- a/tests/engine/layer/LayerStack.test.cpp +++ b/tests/engine/layer/LayerStack.test.cpp @@ -34,7 +34,7 @@ namespace nexo::layer { TEST(LayerStackTest, PopLayer) { #ifdef _WIN32 // TODO: fix test (see #100) - GTEST_SKIP_("Test crashes on the CI on Windows, skipping for now."); + GTEST_SKIP() << "Test crashes on the CI on Windows, skipping for now."; #endif LayerStack stack; auto layer = std::make_shared("Layer1", 1); @@ -49,7 +49,7 @@ namespace nexo::layer { TEST(LayerStackTest, PopOverlay) { #ifdef _WIN32 // TODO: fix test (see #100) - GTEST_SKIP_("Test crashes on the CI on Windows, skipping for now."); + GTEST_SKIP() << "Test crashes on the CI on Windows, skipping for now."; #endif LayerStack stack; auto overlay = std::make_shared("Overlay1", 2); @@ -120,7 +120,7 @@ namespace nexo::layer { TEST(LayerStackTest, RemoveLayerAndOverlayOrder) { #ifdef _WIN32 // TODO: fix test (see #100) - GTEST_SKIP_("Test crashes on the CI on Windows, skipping for now."); + GTEST_SKIP() << "Test crashes on the CI on Windows, skipping for now."; #endif LayerStack stack; auto layer = std::make_shared("Layer", 1); @@ -167,7 +167,7 @@ namespace nexo::layer { TEST(LayerStackTest, RemoveLayersAndOverlaysInRandomOrder) { #ifdef _WIN32 // TODO: fix test (see #100) - GTEST_SKIP_("Test crashes on the CI on Windows, skipping for now."); + GTEST_SKIP() << "Test crashes on the CI on Windows, skipping for now."; #endif LayerStack stack; diff --git a/tests/engine/scene/Scene.test.cpp b/tests/engine/scene/Scene.test.cpp index 6bc454b5..b8e5f9b3 100644 --- a/tests/engine/scene/Scene.test.cpp +++ b/tests/engine/scene/Scene.test.cpp @@ -76,7 +76,7 @@ namespace nexo::scene { TEST_F(SceneTest, AddAndRemoveLayers) { #ifdef _WIN32 // TODO: fix test (see #100) - GTEST_SKIP_("Test crashes on the CI on Windows, skipping for now."); + GTEST_SKIP() << "Test crashes on the CI on Windows, skipping for now."; #endif scene->addLayer(1, "Layer1"); scene->addLayer(2, "Layer2"); @@ -92,7 +92,7 @@ namespace nexo::scene { TEST_F(SceneTest, AddAndRemoveOverlays) { #ifdef _WIN32 // TODO: fix test (see #100) - GTEST_SKIP_("Test crashes on the CI on Windows, skipping for now."); + GTEST_SKIP() << "Test crashes on the CI on Windows, skipping for now."; #endif scene->addOverlay(1, "Overlay1"); scene->addOverlay(2, "Overlay2"); diff --git a/tests/engine/scene/SceneManager.test.cpp b/tests/engine/scene/SceneManager.test.cpp index fb8a8938..73fe2a0e 100644 --- a/tests/engine/scene/SceneManager.test.cpp +++ b/tests/engine/scene/SceneManager.test.cpp @@ -45,7 +45,7 @@ namespace nexo::scene { TEST_F(SceneManagerTest, AddAndRemoveLayersAndOverlays) { #ifdef _WIN32 // TODO: fix test (see #100) - GTEST_SKIP_("Test crashes on the CI on Windows, skipping for now."); + GTEST_SKIP() << "Test crashes on the CI on Windows, skipping for now."; #endif SceneId scene = sceneManager->createScene("Main Scene"); diff --git a/tests/renderer/Framebuffer.test.cpp b/tests/renderer/Framebuffer.test.cpp index ab798a2d..ad6e1a4b 100644 --- a/tests/renderer/Framebuffer.test.cpp +++ b/tests/renderer/Framebuffer.test.cpp @@ -284,7 +284,7 @@ namespace nexo::renderer { { #ifdef _WIN32 // TODO: fix test (see #99) - GTEST_SKIP_("This test infinitely loops on the CI on Windows, skipping for now."); + GTEST_SKIP() << "This test infinitely loops on the CI on Windows, skipping for now."; #endif // Create a small framebuffer with one color attachment. FramebufferSpecs specs; @@ -308,7 +308,7 @@ namespace nexo::renderer { { #ifdef _WIN32 // TODO: fix test (see #99) - GTEST_SKIP_("This test infinitely loops on the CI on Windows, skipping for now."); + GTEST_SKIP() << "This test infinitely loops on the CI on Windows, skipping for now."; #endif // Verify that getPixelWrapper throws when provided with a type other than int. FramebufferSpecs specs; @@ -331,7 +331,7 @@ namespace nexo::renderer { { #ifdef _WIN32 // TODO: fix test (see #99) - GTEST_SKIP_("This test infinitely loops on the CI on Windows, skipping for now."); + GTEST_SKIP() << "This test infinitely loops on the CI on Windows, skipping for now."; #endif // Verify that getPixelWrapper throws if the attachment index is out of bounds. FramebufferSpecs specs;