summaryrefslogtreecommitdiff
path: root/cpp/src/tests/CMakeLists.txt
diff options
context:
space:
mode:
authorStephen D. Huston <shuston@apache.org>2009-06-22 22:51:32 +0000
committerStephen D. Huston <shuston@apache.org>2009-06-22 22:51:32 +0000
commite885a92dccf2b18744af1210138c12ca7bc7ff97 (patch)
tree091ecb8419c0384083055ec734defc695a4dcc1d /cpp/src/tests/CMakeLists.txt
parent9941a77af5691503d289d2b7c82b222735b74f17 (diff)
downloadqpid-python-e885a92dccf2b18744af1210138c12ca7bc7ff97.tar.gz
Script fixes to get tests going on Windows; includes properly licensed background.ps1
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@787431 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/tests/CMakeLists.txt')
-rw-r--r--cpp/src/tests/CMakeLists.txt9
1 files changed, 6 insertions, 3 deletions
diff --git a/cpp/src/tests/CMakeLists.txt b/cpp/src/tests/CMakeLists.txt
index 528d1e4aa4..06f22fc487 100644
--- a/cpp/src/tests/CMakeLists.txt
+++ b/cpp/src/tests/CMakeLists.txt
@@ -17,6 +17,9 @@
# under the License.
#
+# Enable dashboard reporting.
+include (CTest)
+
# Make sure that everything get built before the tests
# Need to create a var with all the necessary top level targets
@@ -273,14 +276,14 @@ add_test (quick_perftest ${test_wrap} ${perftest_LOCATION} --summary --count 100
add_test (quick_topictest ${test_wrap} ${CMAKE_CURRENT_SOURCE_DIR}/quick_topictest${test_script_suffix})
add_test (quick_txtest ${test_wrap} ${txtest_LOCATION} --queues 4 --tx-count 10 --quiet)
if (PYTHON_EXECUTABLE)
- add_test (run_header_test ${CMAKE_CURRENT_SOURCE_DIR}/run_header_test${test_script_suffix})
+ add_test (run_header_test ${shell} ${CMAKE_CURRENT_SOURCE_DIR}/run_header_test${test_script_suffix})
add_test (python_tests ${test_wrap} ${CMAKE_CURRENT_SOURCE_DIR}/python_tests${test_script_suffix})
endif (PYTHON_EXECUTABLE)
add_test (stop_broker ${shell} ${CMAKE_CURRENT_SOURCE_DIR}/stop_broker${test_script_suffix})
if (PYTHON_EXECUTABLE)
- add_test (federation_tests ${CMAKE_CURRENT_SOURCE_DIR}/run_federation_tests${test_script_suffix})
+ add_test (federation_tests ${shell} ${CMAKE_CURRENT_SOURCE_DIR}/run_federation_tests${test_script_suffix})
if (BUILD_ACL)
- add_test (acl_tests ${CMAKE_CURRENT_SOURCE_DIR}/run_acl_tests${test_script_suffix})
+ add_test (acl_tests ${shell} ${CMAKE_CURRENT_SOURCE_DIR}/run_acl_tests${test_script_suffix})
endif (BUILD_ACL)
endif (PYTHON_EXECUTABLE)