diff options
author | Gordon Sim <gsim@apache.org> | 2008-05-14 17:09:28 +0000 |
---|---|---|
committer | Gordon Sim <gsim@apache.org> | 2008-05-14 17:09:28 +0000 |
commit | a4e735d458022e91546128cca4ecc4f32f8e869a (patch) | |
tree | 093ae415684a7ce8f06e7d55b4cf22efef9eef36 /cpp/src/tests/python_tests | |
parent | c59bf9b7e877acc4f0be19a6abcdd67fa7ecc05e (diff) | |
download | qpid-python-a4e735d458022e91546128cca4ecc4f32f8e869a.tar.gz |
Don't fail if python tests aren't found.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@656335 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/tests/python_tests')
-rwxr-xr-x | cpp/src/tests/python_tests | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/tests/python_tests b/cpp/src/tests/python_tests index 3065845c66..ff0519f6fe 100755 --- a/cpp/src/tests/python_tests +++ b/cpp/src/tests/python_tests @@ -12,6 +12,6 @@ do_tests() { ./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 1; } +cd ${QPID_PYTHON_DIR} || { echo "Cannot cd ${QPID_PYTHON_DIR}"; exit; } do_tests 0-10-errata cpp_failing_0-10.txt |