aboutsummaryrefslogtreecommitdiff
path: root/tests/performance_tests/main.cpp
diff options
context:
space:
mode:
authormoneromooo-monero <moneromooo-monero@users.noreply.github.com>2018-07-06 19:10:39 +0100
committermoneromooo-monero <moneromooo-monero@users.noreply.github.com>2018-07-07 19:33:35 +0100
commit639ca3b1fa9c153a99f1d4e9bb488bd02d282e46 (patch)
treefd0d6f844c230bee836af99a4edf5bd9c801e4b5 /tests/performance_tests/main.cpp
parentMerge pull request #4094 (diff)
downloadmonero-639ca3b1fa9c153a99f1d4e9bb488bd02d282e46.tar.xz
core_tests: add --filter to select which tests to run
Diffstat (limited to '')
-rw-r--r--tests/performance_tests/main.cpp21
1 files changed, 1 insertions, 20 deletions
diff --git a/tests/performance_tests/main.cpp b/tests/performance_tests/main.cpp
index 902bd89c0..bc3622ea8 100644
--- a/tests/performance_tests/main.cpp
+++ b/tests/performance_tests/main.cpp
@@ -54,25 +54,6 @@
namespace po = boost::program_options;
-std::string glob_to_regex(const std::string &val)
-{
- std::string newval;
-
- bool escape = false;
- for (char c: val)
- {
- if (c == '*')
- newval += escape ? "*" : ".*";
- else if (c == '?')
- newval += escape ? "?" : ".";
- else if (c == '\\')
- newval += '\\', escape = !escape;
- else
- newval += c;
- }
- return newval;
-}
-
int main(int argc, char** argv)
{
TRY_ENTRY();
@@ -97,7 +78,7 @@ int main(int argc, char** argv)
if (!r)
return 1;
- const std::string filter = glob_to_regex(command_line::get_arg(vm, arg_filter));
+ const std::string filter = tools::glob_to_regex(command_line::get_arg(vm, arg_filter));
performance_timer timer;
timer.start();