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 | 4abbf4b531c2c5332801aefabf616f9da2202f07 (patch) | |
tree | b56a494d9277883f4f32d356b621dc29eb27fb66 /cpp/tests/run-python-tests | |
parent | 15256f1f40f96392028f6182cecf29ff334dbe72 (diff) | |
download | qpid-python-4abbf4b531c2c5332801aefabf616f9da2202f07.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/qpid@519194 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/tests/run-python-tests')
-rwxr-xr-x | cpp/tests/run-python-tests | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/tests/run-python-tests b/cpp/tests/run-python-tests index d9b78e1055..de57553bfc 100755 --- a/cpp/tests/run-python-tests +++ b/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; } |