diff options
| author | Alan Conway <aconway@apache.org> | 2008-05-15 21:34:10 +0000 |
|---|---|---|
| committer | Alan Conway <aconway@apache.org> | 2008-05-15 21:34:10 +0000 |
| commit | ca3bc30a4ff5fbd2504b2868eea60e647b16b2d8 (patch) | |
| tree | 0e842261b0acd9b67ea4e3cb478e60bf975314b0 /qpid/cpp/src/tests/python_tests | |
| parent | 91d75bcf41126fa56a782e4672c9ac5752ec2ded (diff) | |
| download | qpid-python-ca3bc30a4ff5fbd2504b2868eea60e647b16b2d8.tar.gz | |
- Enable python tets and examples in make rpmbuild.
- Remove hard-coded amqp.xml paths from python examples.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@656853 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src/tests/python_tests')
| -rwxr-xr-x | qpid/cpp/src/tests/python_tests | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/qpid/cpp/src/tests/python_tests b/qpid/cpp/src/tests/python_tests index 553c5f4cdb..109d01bd5e 100755 --- a/qpid/cpp/src/tests/python_tests +++ b/qpid/cpp/src/tests/python_tests @@ -3,7 +3,7 @@ QPID_PORT=${QPID_PORT:-5672} PYTHON_TESTS=${PYTHON_TESTS:-$*} MY_DIR=$(dirname $(which $0)) -PYTHON_DIR=${QPID_PYTHON_DIR:-${MY_DIR}/../../../python} +QPID_PYTHON_DIR=${QPID_PYTHON_DIR:-${MY_DIR}/../../../python} run() { SPEC=$1 @@ -11,9 +11,9 @@ run() { ./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 ${PYTHON_DIR} ; then - cd ${PYTHON_DIR} +if test -d ${QPID_PYTHON_DIR} ; then + cd ${QPID_PYTHON_DIR} run 0-10-errata cpp_failing_0-10.txt else - echo Warning: python tests not found. + echo "WARNING: No python tests. $QPID_PYTHON_DIR not found." fi |
