#!/bin/sh OUT=do_tests.out cat<$OUT 2>&1 # erase that dist-clean stuff rm -f $OUT echo "*** Starting configure, results to $OUT" echo "*** do_tests output file" >> $OUT 2>&1 echo "*** date: `date`" >> $OUT 2>&1 echo "*** host: `hostname`" >> $OUT 2>&1 echo "*** uname -a: `uname -a`" >> $OUT 2>&1 echo "*** Starting configure" >> $OUT 2>&1 ./configure >> $OUT 2>&1 echo "*** Copying config.log and config.status into the output file" echo "*** This is config.log" >> $OUT 2>&1 cat config.log >> $OUT 2>&1 echo "*** This is config.status" >> $OUT 2>&1 cat config.status >> $OUT 2>&1 echo "*** Starting make, results to $OUT" echo "*** Starting make" >> $OUT 2>&1 make >> $OUT 2>&1 echo "*** Starting make test, results to $OUT" echo "*** Starting make test" >> $OUT 2>&1 make test >> $OUT 2>&1 echo "*** do_tests is done at `date`" cat<