[Python-checkins] distutils2: Add cheers in tests.sh

tarek.ziade python-checkins at python.org
Sun Aug 8 11:50:47 CEST 2010


tarek.ziade pushed 47e8fd8c67ba to distutils2:

http://hg.python.org/distutils2/rev/47e8fd8c67ba
changeset:   505:47e8fd8c67ba
user:        ?ric Araujo <merwok at netwok.org>
date:        Fri Aug 06 18:07:53 2010 +0200
summary:     Add cheers in tests.sh
files:       src/tests.sh

diff --git a/src/tests.sh b/src/tests.sh
--- a/src/tests.sh
+++ b/src/tests.sh
@@ -4,36 +4,37 @@
 python2.4 setup.py build_ext -f -q 2> /dev/null > /dev/null
 python2.4 -Wd runtests.py -q 2> /dev/null
 if [ $? -ne 0 ];then
-    echo "Failed"
+    echo Failed
     rm -f distutils2/_backport/_hashlib.so
     exit 1
 else
-    echo "Success"
+    echo Success
 fi
 
 echo -n "Running tests for Python 2.5... "
 python2.5 -Wd runtests.py -q 2> /dev/null
 if [ $? -ne 0 ];then
-    echo "Failed"
+    echo Failed
     exit 1
 else
-    echo "Success"
+    echo Success
 fi
 
 echo -n "Running tests for Python 2.6... "
 python2.6 -Wd runtests.py -q 2> /dev/null
 if [ $? -ne 0 ];then
-    echo "Failed"
+    echo Failed
     exit 1
 else
-    echo "Success"
+    echo Success
 fi
 
 echo -n "Running tests for Python 2.7... "
 python2.7 -Wd -bb -3 runtests.py -q 2> /dev/null
 if [ $? -ne 0 ];then
-    echo "Failed"
+    echo Failed
     exit 1
 else
-    echo "Success"
+    echo Success
 fi
+echo Good job, commit now!

--
Repository URL: http://hg.python.org/distutils2


More information about the Python-checkins mailing list