| 117 | #endif |
| 118 | |
| 119 | std::string skipShaderDummyTests() |
| 120 | { |
| 121 | if constexpr (skipShaderDummyTest) |
| 122 | // https://github.com/catchorg/Catch2/blob/devel/docs/test-cases-and-sections.md#special-tags |
| 123 | // This tag tells Catch2 to not run a given TEST_CASE |
| 124 | return "[.shaderDummy]"; |
| 125 | else |
| 126 | return ""; |
| 127 | } |
| 128 | |
| 129 | std::string skipShaderFullTests() |
| 130 | { |