diff options
| author | Stephen D. Huston <shuston@apache.org> | 2010-11-04 22:50:43 +0000 |
|---|---|---|
| committer | Stephen D. Huston <shuston@apache.org> | 2010-11-04 22:50:43 +0000 |
| commit | 43369d30899d7c5648cc15fb93db0476341e206d (patch) | |
| tree | 28658e067b5447b5aa9de508e6c17f31a89ee5a0 /cpp/src | |
| parent | c5004408ae40f20ffe980114a6f482bc6e10342e (diff) | |
| download | qpid-python-43369d30899d7c5648cc15fb93db0476341e206d.tar.gz | |
When running store tests, pass the store type to the script. Also added test runs for the CLFS store.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1031323 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src')
| -rw-r--r-- | cpp/src/tests/CMakeLists.txt | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/cpp/src/tests/CMakeLists.txt b/cpp/src/tests/CMakeLists.txt index 4046481add..b9bfa35d94 100644 --- a/cpp/src/tests/CMakeLists.txt +++ b/cpp/src/tests/CMakeLists.txt @@ -293,8 +293,11 @@ if (BUILD_ACL) add_test (acl_tests ${shell} ${CMAKE_CURRENT_SOURCE_DIR}/run_acl_tests${test_script_suffix}) endif (BUILD_ACL) if (BUILD_MSSQL) - add_test (store_tests ${shell} ${CMAKE_CURRENT_SOURCE_DIR}/run_store_tests${test_script_suffix}) + add_test (store_tests ${shell} ${CMAKE_CURRENT_SOURCE_DIR}/run_store_tests${test_script_suffix} MSSQL) endif (BUILD_MSSQL) +if (BUILD_MSCLFS) + add_test (store_tests ${shell} ${CMAKE_CURRENT_SOURCE_DIR}/run_store_tests${test_script_suffix} MSSQL-CLFS) +endif (BUILD_MSCLFS) endif (PYTHON_EXECUTABLE) add_library(test_store MODULE test_store.cpp) |
