diff options
| author | Alan Conway <aconway@apache.org> | 2008-05-14 19:10:30 +0000 |
|---|---|---|
| committer | Alan Conway <aconway@apache.org> | 2008-05-14 19:10:30 +0000 |
| commit | 2c7075bed5bf47dd6191d98a41adeaedfeabbf3b (patch) | |
| tree | 1e34b13981bd1a5ec3eed596ec85e10f8eff195b /qpid/cpp/src/tests/python_tests | |
| parent | 81f7b4aaeede6a9eedbba4a7e2c2e2991ec48bd1 (diff) | |
| download | qpid-python-2c7075bed5bf47dd6191d98a41adeaedfeabbf3b.tar.gz | |
Undo revision 656320, causing build problems.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@656369 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src/tests/python_tests')
| -rwxr-xr-x | qpid/cpp/src/tests/python_tests | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/qpid/cpp/src/tests/python_tests b/qpid/cpp/src/tests/python_tests index ff0519f6fe..e4b70f5ff5 100755 --- a/qpid/cpp/src/tests/python_tests +++ b/qpid/cpp/src/tests/python_tests @@ -1,17 +1,19 @@ #!/bin/sh # 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} +PYTHON_DIR=${MY_DIR}/../../../python -do_tests() { +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; } } -cd ${QPID_PYTHON_DIR} || { echo "Cannot cd ${QPID_PYTHON_DIR}"; exit; } -do_tests 0-10-errata cpp_failing_0-10.txt - +if test -d ${PYTHON_DIR} ; then + cd ${PYTHON_DIR} + run 0-10-errata cpp_failing_0-10.txt +else + echo Warning: python tests not found. +fi |
