aboutsummaryrefslogtreecommitdiffstats
path: root/storageframework
diff options
context:
space:
mode:
authorVegard Sjonfjell <vegard@yahoo-inc.com>2016-11-16 16:31:57 +0100
committerVegard Sjonfjell <vegard@yahoo-inc.com>2016-11-16 16:31:57 +0100
commit54a1ed8a51b5a1ef213774f778bce317e0319ddd (patch)
tree4f2527d44a0b4786667701381f28e9886811b237 /storageframework
parent5295ab16b9da4181306b938971bbd227c69b61e0 (diff)
Parallize cppunit test runner test suites using cppunit-parallelize.py
Diffstat (limited to 'storageframework')
-rw-r--r--storageframework/src/tests/CMakeLists.txt7
1 files changed, 6 insertions, 1 deletions
diff --git a/storageframework/src/tests/CMakeLists.txt b/storageframework/src/tests/CMakeLists.txt
index d96113597fd..9f39a171cba 100644
--- a/storageframework/src/tests/CMakeLists.txt
+++ b/storageframework/src/tests/CMakeLists.txt
@@ -8,4 +8,9 @@ vespa_add_executable(storageframework_testrunner_app TEST
storageframework_testmemory
storageframework_testthread
)
-vespa_add_test(NAME storageframework_testrunner_app COMMAND storageframework_testrunner_app)
+
+# TODO: Test with a larget chunk size to parallelize test suite runs
+vespa_add_test(
+ NAME storageframework_testrunner_app
+ COMMAND python ${PROJECT_SOURCE_DIR}/cppunit-parallelize.py --chunks 1 $<TARGET_FILE:storageframework_testrunner_app>
+)