From 9244db73e6a21e8407f0fb770ffa121aef4f408e Mon Sep 17 00:00:00 2001 From: jmacey Date: Fri, 29 Sep 2023 14:32:43 +0100 Subject: [PATCH] forgot to exclude shader tests from CI run as needs gpu --- tests/ShaderLibTests.cpp | 2 +- tests/main.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/ShaderLibTests.cpp b/tests/ShaderLibTests.cpp index b45dda54..3fe8457e 100644 --- a/tests/ShaderLibTests.cpp +++ b/tests/ShaderLibTests.cpp @@ -417,7 +417,7 @@ TEST(Shader,loadFromString) TEST(Shader,editShader) { - + } diff --git a/tests/main.cpp b/tests/main.cpp index 6deed068..40e9ca7f 100644 --- a/tests/main.cpp +++ b/tests/main.cpp @@ -87,7 +87,7 @@ int main(int argc, char **argv) if(useOpenGL == false) { std::cerr << "excluding tests\n"; - ::testing::GTEST_FLAG(filter) = "-ShaderLib.*:VAOPrimitives.*:NGLInit*:VAOFactory*"; + ::testing::GTEST_FLAG(filter) = "-ShaderLib.*:Shader*:VAOPrimitives.*:NGLInit*:VAOFactory*"; } // testing::internal::CaptureStdout(); testing::internal::CaptureStderr();