git-svn-id: https://openser.svn.sourceforge.net/svnroot/openser/trunk@3856 689a6050-402a-0410-94f2-e92a70836424
@@ -5,9 +5,7 @@ all:
echo "run test `basename $$FILE .sh`:" `head "$$FILE" -n 2 | tail -n 1 | cut -c 3-` ; \
./$$FILE ; \
ret=$$? ; \
- if [ "$$ret" -eq 0 ] ; then \
- echo "success" ; \
- else \
+ if [ ! "$$ret" -eq 0 ] ; then \
echo "failed" ; \
fi ; \