summaryrefslogtreecommitdiff
path: root/cpp/tests/run-python-tests
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2007-01-09 02:57:26 +0000
committerAlan Conway <aconway@apache.org>2007-01-09 02:57:26 +0000
commit7a65ac87c0fa28cab643207dd5a670bc8c4fef70 (patch)
tree7bbee13be65ec1def0d33c7570bb5b2125bacda7 /cpp/tests/run-python-tests
parentc2055dbbf7d8ecd4a53d82b95dc2f666dbbb5fbc (diff)
downloadqpid-python-7a65ac87c0fa28cab643207dd5a670bc8c4fef70.tar.gz
Disabled python tests, added system tests to build: client_test, topictest.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/qpid.0-9@494308 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/tests/run-python-tests')
-rwxr-xr-xcpp/tests/run-python-tests15
1 files changed, 0 insertions, 15 deletions
diff --git a/cpp/tests/run-python-tests b/cpp/tests/run-python-tests
index 57be07ec1c..e69de29bb2 100755
--- a/cpp/tests/run-python-tests
+++ b/cpp/tests/run-python-tests
@@ -1,15 +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; exit $status' 0
-trap '(exit $?); exit $?' 1 2 13 15
-
-# Run the tests.
-cd ../../python && ./run-tests -v -I cpp_failing.txt
-
-rm -f $log