summaryrefslogtreecommitdiff
path: root/cpp/tests/run-system-tests
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2007-01-09 16:55:27 +0000
committerAlan Conway <aconway@apache.org>2007-01-09 16:55:27 +0000
commit09e50608a0db021570db41194abc56b49fb2562d (patch)
tree4f955d4a19c1758275732ec8a3032a83f94bd2fa /cpp/tests/run-system-tests
parentfd88a6ddb9bc813286089558a22732f03410b79c (diff)
downloadqpid-python-09e50608a0db021570db41194abc56b49fb2562d.tar.gz
Automated C++ client_test and topictest.
Andrew Stitcher: patch to change hardcoded 8-0 version numbers to 0-9. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/qpid.0-9@494483 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/tests/run-system-tests')
-rwxr-xr-xcpp/tests/run-system-tests42
1 files changed, 0 insertions, 42 deletions
diff --git a/cpp/tests/run-system-tests b/cpp/tests/run-system-tests
deleted file mode 100755
index 7e3223debe..0000000000
--- a/cpp/tests/run-system-tests
+++ /dev/null
@@ -1,42 +0,0 @@
-#!/bin/sh
-
-set -e
-log=`pwd`/qpidd.log
-# Start the daemon, recording its PID.
-../src/qpidd > $log 2>&1 & pid=$!
-
-# Arrange to kill the daemon upon any type of termination.
-trap 'status=$?; kill $pid; rm -f test.out; exit $status' 0
-trap '(exit $?); exit $?' 1 2 13 15
-
-# Run C++ client tests.
-run_test() {
- test="$*"
- echo -n "Running: $test ... "
- if $test >test.out 2>&1 ; then
- echo " Passed" ;
- else
- echo " FAILED. Output:";
- cat test.out
- FAILED=yes
- fi
- rm -f test.out
-}
-
-run_test ./client_test
-run_test `dirname $0`/topictest -s2 -m2 -b1
-
-# FIXME aconway 2007-01-08: Re-enable python tests when the brach
-# is functional again.
-echo "WARNING: PYTHON TESTS DISABLED TILL BRANCH IS FUNCTIONAL"
-
-# Run the python tests.
-# if test -d ../../python ; then
-# cd ../../python && ./run-tests -v -I cpp_failing.txt
-# else
-# echo Warning: python tests not found.
-# fi
-
-# TODO aconway 2006-12-13: run the other client tests.
-
-rm -f $log