| 127 | } |
| 128 | |
| 129 | std::string skipShaderFullTests() |
| 130 | { |
| 131 | if constexpr (skipShaderFullTest) |
| 132 | // https://github.com/catchorg/Catch2/blob/devel/docs/test-cases-and-sections.md#special-tags |
| 133 | // This tag tells Catch2 to not run a given TEST_CASE |
| 134 | return "[.shaderFull]"; |
| 135 | else |
| 136 | return ""; |
| 137 | } |
| 138 | |
| 139 | } // namespace |
| 140 |