From dc1c1b6c0d613e50689505efa194d5fb2ee71d52 Mon Sep 17 00:00:00 2001 From: AzaezelX Date: Sat, 10 Jun 2023 18:17:34 -0500 Subject: [PATCH] try an additional CI gtest filter... --- Engine/source/windowManager/test/windowManagerTest.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Engine/source/windowManager/test/windowManagerTest.cpp b/Engine/source/windowManager/test/windowManagerTest.cpp index d6179c96b..649dcd607 100644 --- a/Engine/source/windowManager/test/windowManagerTest.cpp +++ b/Engine/source/windowManager/test/windowManagerTest.cpp @@ -31,6 +31,8 @@ TEST(WinMgr, BasicAPI) // Check out the primary desktop area... RectI primary = pwm->getPrimaryDesktopArea(); + EXPECT_TRUE(pwm) + << "no monitor to test against!"; EXPECT_TRUE(primary.isValidRect()) << "Got some sort of invalid rect from the window manager!"; @@ -55,4 +57,4 @@ TEST(WinMgr, BasicAPI) // No way to destroy the window manager. }; -#endif \ No newline at end of file +#endif