1234567891011121314151617181920212223242526272829303132333435 |
- #! /bin/sh
- . test-init.sh
- cat > Makefile.am << 'END'
- AUTOMAKE_OPTIONS = dejagnu
- 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
- :
|