12345678910111213141516171819202122232425262728293031323334353637 |
- #! /bin/sh
- am_serial_tests=yes
- . test-init.sh
- cat > Makefile.am <<'END'
- AUTOMAKE_OPTIONS = serial-tests
- TESTS = foo.test
- END
- $ACLOCAL
- for opts in '' '-a' '--add-missing --copy'; do
- $AUTOMAKE $opts
- $FGREP 'test-driver' Makefile.in && exit 1
- find . | $FGREP 'test-driver' && exit 1
- : For shells with busted 'set -e'.
- done
- :
|