1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- #! /bin/sh
- . test-init.sh
- cat >> configure.ac << 'END'
- AC_OUTPUT
- END
- cat > Makefile.am << 'END'
- TESTS = dir1/foo.test dir2/dir3/foo.test
- TEST_LOG_COMPILER = sh
- END
- mkdir dir1 dir2 dir2/dir3
- echo : > dir1/foo.test
- echo : > dir2/dir3/foo.test
- $ACLOCAL
- $AUTOCONF
- $AUTOMAKE -a
- mkdir build
- cd build
- ../configure
- $MAKE check
- find .
- test -f test-suite.log
- test -f dir1/foo.log
- test -f dir1/foo.trs
- test -f dir2/dir3/foo.log
- test -f dir2/dir3/foo.trs
- :
|