diff options
author | jsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68> | 2010-05-13 05:28:54 +0000 |
---|---|---|
committer | jsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68> | 2010-05-13 05:28:54 +0000 |
commit | 4e0f558c13807745ed59eabffe2c834322b26a1d (patch) | |
tree | 372fd7b7425c24d9a5f7a68590f385ccad50b9ec /sca-cpp/trunk/modules/wsgi/util-test | |
parent | d97c0ec46c554920350403623d70938216b5a2b0 (diff) |
Add simple implementation of Scheme-like lazy streams.
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@943806 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-cpp/trunk/modules/wsgi/util-test')
-rwxr-xr-x | sca-cpp/trunk/modules/wsgi/util-test | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sca-cpp/trunk/modules/wsgi/util-test b/sca-cpp/trunk/modules/wsgi/util-test index a1c54e80f1..cb4e2f6c8a 100755 --- a/sca-cpp/trunk/modules/wsgi/util-test +++ b/sca-cpp/trunk/modules/wsgi/util-test @@ -21,9 +21,13 @@ 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 stream-test.py rc=$? if [ "$rc" = "0" ]; then + $python_prefix/bin/python xml-test.py + rc=$? +fi +if [ "$rc" = "0" ]; then $python_prefix/bin/python atom-test.py rc=$? fi |