aboutsummaryrefslogtreecommitdiffstats
path: root/src/tests/test_runner.h
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2019-01-28 19:07:25 -0500
committerJack Lloyd <[email protected]>2019-01-31 11:07:59 -0500
commit926ef40535852f20368e9980b909f354e661b5ff (patch)
tree24c2dd6978b9047d0a5adbd59cb4520771f0cdb7 /src/tests/test_runner.h
parent55c7751b1eee10b5d850a500dd000cbe81d88942 (diff)
Run the test suite in multiple threads
Refactor areas where data was being shared
Diffstat (limited to 'src/tests/test_runner.h')
-rw-r--r--src/tests/test_runner.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/tests/test_runner.h b/src/tests/test_runner.h
index 0bde5cc4f..47d4f1363 100644
--- a/src/tests/test_runner.h
+++ b/src/tests/test_runner.h
@@ -26,8 +26,9 @@ class Test_Runner final
std::ostream& output() const { return m_output; }
size_t run_tests(const std::vector<std::string>& tests_to_run,
+ size_t test_threads,
size_t test_run,
- const size_t tot_test_runs);
+ size_t tot_test_runs);
std::ostream& m_output;
};