X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=t%2Fyacc4.sh;h=a4802d5fbe657fb3cda7d101202c028f8aee7a09;hb=fb214402c043a70581f19d4856a81362a5a1a0d6;hp=3f9a204784777fc895ebdb49ee919509a8b1e088;hpb=8a5096d150cf9803b8963768b7366cd68edcce03;p=platform%2Fupstream%2Fautomake.git diff --git a/t/yacc4.sh b/t/yacc4.sh index 3f9a204..a4802d5 100755 --- a/t/yacc4.sh +++ b/t/yacc4.sh @@ -17,7 +17,7 @@ # Some simple tests of ylwrap functionality. required='cc yacc' -. ./defs || Exit 1 +. test-init.sh cat >> configure.ac << 'END' AC_PROG_CC @@ -70,8 +70,8 @@ cd sub ../configure $MAKE -grep '^#.*/sub/\.\./' bar.c && Exit 1 -grep '^#.*/sub/\.\./' parse.c && Exit 1 +grep '^#.*/sub/\.\./' bar.c && exit 1 +grep '^#.*/sub/\.\./' parse.c && exit 1 # Make distclean must not erase bar.c nor parse.c (by GNU standards) ... $MAKE distclean @@ -80,7 +80,7 @@ test -f parse.c # ... but maintainer-clean should. ../configure $MAKE maintainer-clean -test ! -f bar.c -test ! -f parse.c +test ! -e bar.c +test ! -e parse.c :