diff options
author | Alan Conway <aconway@apache.org> | 2007-03-17 00:18:26 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2007-03-17 00:18:26 +0000 |
commit | 7ab2263f546329a2c620cfe151f27677ad06fd9d (patch) | |
tree | 76b49ee6ed82d19aa263fea17bef4f8f2f3ee8c8 /qpid/cpp/tests | |
parent | 14f2a8d6398140ae72af9429c75179dde539c972 (diff) | |
download | qpid-python-7ab2263f546329a2c620cfe151f27677ad06fd9d.tar.gz |
* python/qpid/testlib.py:
- fix testlib ops to use 0-8 or 0-9 classes as appropriate.
- fix bug in arg parsing of specfile.
* cpp/tests/run-python-tests: Fix scripting bug that gave a OK build result
even if there were python failures.
* cpp/gen: svn:ignore all generated source and Makefile.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@519194 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/tests')
-rwxr-xr-x | qpid/cpp/tests/run-python-tests | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/cpp/tests/run-python-tests b/qpid/cpp/tests/run-python-tests index d9b78e1055..de57553bfc 100755 --- a/qpid/cpp/tests/run-python-tests +++ b/qpid/cpp/tests/run-python-tests @@ -18,7 +18,7 @@ sleep 4 # Run the tests. ( cd $abs_srcdir/../../python \ - && python ./run-tests -v -I cpp_failing.txt || fail=1 ) + && python ./run-tests -v -I cpp_failing.txt ) || fail=1 kill $pid || { echo FAIL: process already died; cat log; fail=1; } |