Lines Matching refs:test_suite
68 find_latest(const std::string& test_suite) in find_latest() argument
73 F("^results.%s.[0-9]{8}-[0-9]{6}-[0-9]{6}.db$") % test_suite, 0); in find_latest()
93 % test_suite); in find_latest()
99 % test_suite); in find_latest()
113 new_id(const std::string& test_suite, const datetime::timestamp& when) in new_id() argument
117 return F("%s.%s-%06s") % test_suite % when_datetime % when_ms; in new_id()
149 const std::string test_suite = test_suite_for_path(fs::current_path()); in find_results() local
150 return find_latest(test_suite); in find_results()
253 std::string test_suite; in test_suite_for_path() local
255 test_suite = path.str(); in test_suite_for_path()
257 test_suite = path.to_absolute().str(); in test_suite_for_path()
258 PRE(!test_suite.empty() && test_suite[0] == '/'); in test_suite_for_path()
260 std::replace(test_suite.begin(), test_suite.end(), '/', '_'); in test_suite_for_path()
261 test_suite.erase(0, 1); in test_suite_for_path()
263 return test_suite; in test_suite_for_path()