summaryrefslogtreecommitdiffstats
path: root/tools/slang-test/main.cpp
diff options
context:
space:
mode:
authorjsmall-nvidia <jsmall@nvidia.com>2018-10-30 15:31:27 -0400
committerGitHub <noreply@github.com>2018-10-30 15:31:27 -0400
commitbaf06088dff0b961843ad03efd75ff009befec5c (patch)
tree6720c4b5015ff50dd14d7654d5d3fdae01a6ef7e /tools/slang-test/main.cpp
parent2a7644980035bfda0aab00f183154ab7e976ba63 (diff)
Feature/serial string pool refactor (#702)
* Ongoing serialization for full debug work. * Use StringRepresentationCache and StringSlicePool for serialization. * Removed some older path handling for serialization which had some wrong underlying assumptions. * Builds with refactored use of SubStringPool in ir-serialize. * Removed prohibitedCategories because not used anywhere. * Add category 'compatibility-issue' * Remove work in progress on debug serialization.
Diffstat (limited to 'tools/slang-test/main.cpp')
-rw-r--r--tools/slang-test/main.cpp5
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;