diff options
| author | Alan Conway <aconway@apache.org> | 2009-01-29 18:18:52 +0000 |
|---|---|---|
| committer | Alan Conway <aconway@apache.org> | 2009-01-29 18:18:52 +0000 |
| commit | cd751dab9b74348b7dc6cc3a1816ce1ddb42af86 (patch) | |
| tree | c6bb37da65ddd1f336644f646a9d00b20e508ef2 /qpid/cpp/src/tests/python_tests | |
| parent | adfa9a92e3549e8869b802c2eb930d8954c23767 (diff) | |
| download | qpid-python-cd751dab9b74348b7dc6cc3a1816ce1ddb42af86.tar.gz | |
Run python tests against a single-member cluster in check-long.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@738947 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src/tests/python_tests')
| -rwxr-xr-x | qpid/cpp/src/tests/python_tests | 19 |
1 files changed, 6 insertions, 13 deletions
diff --git a/qpid/cpp/src/tests/python_tests b/qpid/cpp/src/tests/python_tests index 30bb8259a4..e56b91ba5c 100755 --- a/qpid/cpp/src/tests/python_tests +++ b/qpid/cpp/src/tests/python_tests @@ -22,18 +22,11 @@ # Run the python tests. QPID_PORT=${QPID_PORT:-5672} PYTHON_TESTS=${PYTHON_TESTS:-$*} -MY_DIR=`dirname \`which $0\`` -QPID_PYTHON_DIR=${QPID_PYTHON_DIR:-${MY_DIR}/../../../python} +QPID_PYTHON_DIR=${QPID_PYTHON_DIR:-`dirname $0`/../../../python} +SPEC=${SPEC:-0-10-errata} +FAILING=${FAILING:-cpp_failing_0-10.txt} -run() { - SPEC=$1 - FAILING=$2 - ./run-tests --skip-self-test -v -s $SPEC -I $FAILING -b localhost:$QPID_PORT $PYTHON_TESTS || { echo "FAIL python tests for $SPEC"; exit 1; } -} +test -d $QPID_PYTHON_DIR || { echo "WARNING: No python tests. $QPID_PYTHON_DIR not found."; exit 1; } +cd $QPID_PYTHON_DIR +./run-tests --skip-self-test -v -s $SPEC -I $FAILING -b localhost:$QPID_PORT $PYTHON_TESTS || { echo "FAIL python tests for $SPEC"; exit 1; } -if test -d ${QPID_PYTHON_DIR} ; then - cd ${QPID_PYTHON_DIR} - run 0-10-errata cpp_failing_0-10.txt -else - echo "WARNING: No python tests. $QPID_PYTHON_DIR not found." -fi |
