summaryrefslogtreecommitdiffstats
path: root/share/extensions
diff options
context:
space:
mode:
authorAlex Valavanis <valavanisalex@gmail.com>2013-08-03 15:35:41 +0000
committerAlex Valavanis <valavanisalex@gmail.com>2013-08-03 15:35:41 +0000
commit1a58d13b2b974a9da674311899df9c2e16f3e053 (patch)
tree3aad6a50ac5203ba757ba0e9d077f35eba7e2c4b /share/extensions
parentFix extensions that fail unit tests (diff)
downloadinkscape-1a58d13b2b974a9da674311899df9c2e16f3e053.tar.gz
inkscape-1a58d13b2b974a9da674311899df9c2e16f3e053.zip
Fix return code for extension tests]
(bzr r12446)
Diffstat (limited to 'share/extensions')
-rwxr-xr-xshare/extensions/test/run-all-extension-tests6
1 files changed, 5 insertions, 1 deletions
diff --git a/share/extensions/test/run-all-extension-tests b/share/extensions/test/run-all-extension-tests
index 1776e25b0..e7cba78f4 100755
--- a/share/extensions/test/run-all-extension-tests
+++ b/share/extensions/test/run-all-extension-tests
@@ -60,4 +60,8 @@ echo ""
rm $py_cover_files $failed_tests
-$fail && exit 1 \ No newline at end of file
+if [ x$fail == xtrue ]; then
+ exit 1
+else
+ exit 0
+fi