123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- #! /bin/sh
- . test-init.sh
- count=10000
- echo AC_OUTPUT >> configure.ac
- cat > Makefile.am <<'END'
- TEST_EXTENSIONS = .t
- TESTS =
- T_LOG_COMPILER = false
- T_LOG_DRIVER = false
- END
- set +x
- for i in $(seq_ 1 $count); do
- echo false > $i.t
- echo dummy $i > $i.log
- echo :global-test-result: PASS > $i.trs
- echo :test-result: PASS >> $i.trs
- echo :copy-in-global-log: yes >> $i.trs
- echo TESTS += $i.t
- done >> Makefile.am
- set -x
- head -n 100 Makefile.am || :
- tail -n 100 Makefile.am || :
- cat $count.trs
- $ACLOCAL
- $AUTOCONF
- $AUTOMAKE -a
- ./configure
- $MAKE test-suite.log >stdout || { cat stdout; exit 1; }
- cat stdout
- grep "^# TOTAL: $count$" stdout
- grep "^dummy $count$" test-suite.log
- specimen=347
- grep "^dummy $specimen$" test-suite.log
- :
|