summaryrefslogtreecommitdiffstats
path: root/vespalib
diff options
context:
space:
mode:
authorTor Egge <Tor.Egge@broadpark.no>2019-10-21 10:59:40 +0200
committerTor Egge <Tor.Egge@broadpark.no>2019-10-21 11:01:47 +0200
commit2c39fb996726e49c357482480a2a5bdf6601585d (patch)
tree5325a9a27bda537f5a3af05010326b6328ada89d /vespalib
parent1e9da543a5f9388efd9e4a43ee1fb661d0f76ce6 (diff)
Use modified ECMAScript regular expression grammar for filtering tests
to run using vespalib testkit.
Diffstat (limited to 'vespalib')
-rw-r--r--vespalib/src/vespa/vespalib/testkit/test_hook.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/vespalib/src/vespa/vespalib/testkit/test_hook.cpp b/vespalib/src/vespa/vespalib/testkit/test_hook.cpp
index b6020dcb879..31a6c8f4e28 100644
--- a/vespalib/src/vespa/vespalib/testkit/test_hook.cpp
+++ b/vespalib/src/vespa/vespalib/testkit/test_hook.cpp
@@ -98,7 +98,7 @@ TestHook::runAll()
FastOSTestThreadFactory threadFactory;
TestThreadFactory::factory = &threadFactory;
std::string name = TestMaster::master.getName();
- std::regex pattern(lookup_subset_pattern(name), std::regex::extended);
+ std::regex pattern(lookup_subset_pattern(name));
size_t testsPassed = 0;
size_t testsFailed = 0;
size_t testsIgnored = 0;