diff options
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/slang-test/main.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tools/slang-test/main.cpp b/tools/slang-test/main.cpp index 56fefbd9d..22749c206 100644 --- a/tools/slang-test/main.cpp +++ b/tools/slang-test/main.cpp @@ -36,9 +36,6 @@ struct TestCategory // The logical "super-category" of this category TestCategory* parent; - - // A list of categories that we explicitly want to exclude - List<TestCategory*> prohibitedCategories; }; // Options for a particular test @@ -1931,6 +1928,8 @@ int main( auto unitTestCatagory = addTestCategory("unit-test", fullTestCategory); + auto compatibilityIssueCatagory = addTestCategory("compatibility-issue", fullTestCategory); + // An un-categorized test will always belong to the `full` category g_defaultTestCategory = fullTestCategory; |
