summaryrefslogtreecommitdiffstats
path: root/sca-cpp/trunk/modules/wsgi/util-test
diff options
context:
space:
mode:
authorjsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68>2010-03-17 08:12:39 +0000
committerjsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68>2010-03-17 08:12:39 +0000
commit8ccd1ab0bc508fedcb72e1343396fd4c8e8aa9a6 (patch)
tree5a8a0ac7a845aa05d25753ece7212a697776ae3f /sca-cpp/trunk/modules/wsgi/util-test
parent2df2ef9c55bcd5fc17d9400799a80cc941e05a39 (diff)
Added support for HTTP references and different versions of the store-wsgi composite.
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@924188 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-cpp/trunk/modules/wsgi/util-test')
-rwxr-xr-xsca-cpp/trunk/modules/wsgi/util-test12
1 files changed, 10 insertions, 2 deletions
diff --git a/sca-cpp/trunk/modules/wsgi/util-test b/sca-cpp/trunk/modules/wsgi/util-test
index d7a6a34101..a1c54e80f1 100755
--- a/sca-cpp/trunk/modules/wsgi/util-test
+++ b/sca-cpp/trunk/modules/wsgi/util-test
@@ -22,6 +22,14 @@ here=`readlink -f $0`; here=`dirname $here`
python_prefix=`cat $here/../python/python.prefix`
$python_prefix/bin/python xml-test.py
-$python_prefix/bin/python atom-test.py
-$python_prefix/bin/python json-test.py
+rc=$?
+if [ "$rc" = "0" ]; then
+ $python_prefix/bin/python atom-test.py
+ rc=$?
+fi
+if [ "$rc" = "0" ]; then
+ $python_prefix/bin/python json-test.py
+ rc=$?
+fi
+return $rc