1234567891011121314151617181920212223242526272829303132333435363738394041 |
- #! /bin/sh
- . test-init.sh
- cat > Makefile.am << 'END'
- TESTS = frob.test
- END
- test x"$am_serial_tests" = x"yes" || : > test-driver
- $ACLOCAL
- $AUTOMAKE
- grep 'check-TESTS.*:' Makefile.in
- grep 'check-DEJAGNU' Makefile.in && exit 1
- sed -n '/^\.PHONY:/,/^$/p' Makefile.in | $EGREP '(^| )check-TESTS($| )'
- $EGREP '^check:.* check-am( |$)' Makefile.in
- :
|