From baf06088dff0b961843ad03efd75ff009befec5c Mon Sep 17 00:00:00 2001 From: jsmall-nvidia Date: Tue, 30 Oct 2018 15:31:27 -0400 Subject: 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. --- tools/slang-test/main.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'tools/slang-test/main.cpp') 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 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; -- cgit v1.2.3