1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- #! /bin/sh
- . test-init.sh
- cat >> configure.ac <<END
- AC_OUTPUT
- END
- cat > Makefile.am << 'END'
- TEST_EXTENSIONS = .sh .test .bar
- TESTS = foo.sh mu.test foo.test foo.bar
- .PHONY: verify
- verify:
- is $(TEST_LOGS) == foo.log mu.log foo.log foo.log
- END
- $ACLOCAL
- $AUTOCONF
- $AUTOMAKE -a
- ./configure
- $MAKE verify
- :
|