From 798c314b09c2d73756afcb2b0c6608e8b3f305a2 Mon Sep 17 00:00:00 2001 From: "Peter D. Barnes, Jr." Date: Fri, 21 Aug 2015 13:48:32 -0700 Subject: [PATCH] Refactor test name character restrictions: allow '*' --- src/core/model/test.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/model/test.cc b/src/core/model/test.cc index 2be4902aa..01878ae14 100644 --- a/src/core/model/test.cc +++ b/src/core/model/test.cc @@ -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