Refactor test name character restrictions: allow '*'

This commit is contained in:
Peter D. Barnes, Jr.
2015-08-21 13:48:32 -07:00
parent dea2f0b8c7
commit 798c314b09

View File

@@ -310,7 +310,7 @@ TestCase::AddTestCase (TestCase *testCase, enum TestCase::TestDuration duration)
// tests with "val = v1 * v2" or "v1 < 3" or "case: foo --> bar"
// So we allow ':<>*"
std::string badchars = "\"/\\|?*";
std::string badchars = "\"/\\|?";
// Badchar Class Regex Count of failing test names
// All ":<>\"/\\|?*" 611
// Allow ':' "<>\"/\\|?*" 128