diff options
Diffstat (limited to 't/exeext.sh')
-rwxr-xr-x | t/exeext.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/t/exeext.sh b/t/exeext.sh index 42fa57497..a07bdcb74 100755 --- a/t/exeext.sh +++ b/t/exeext.sh @@ -62,7 +62,7 @@ grep '^maude\.static$(EXEEXT):' Makefile.in grep '^maude3$(EXEEXT):' Makefile.in grep '^mt$(EXEEXT):' Makefile.in grep '^rmt$(EXEEXT):' Makefile.in -test `grep '^bin_PROGRAMS =' Makefile.in | wc -l` = 1 +test $(grep -c '^bin_PROGRAMS =' Makefile.in) -eq 1 # Make sure $(EXEEXT) gets stripped before canonicalization. grep 'maude3__EXEEXT__OBJECTS' Makefile.in && Exit 1 @@ -86,3 +86,5 @@ grep '1BEG: maude.foo :END1' stdout grep '2BEG: maude.static.foo :END2' stdout grep '3BEG: maude3.foo :END3' stdout grep '4BEG: :END4' stdout + +: |