Lines Matching refs:logfile
30 logfile=$1
37 printf " $str ... " >> $logfile.short
40 printf " $str ... " >> $logfile.verbose
41 echo "$*" >> $logfile.verbose
44 ("${ABT_EVAL}" "$*") >> $logfile.verbose 2>&1
50 echo "done" >> $logfile.short
52 echo "failed" >> $logfile.short
144 for logfile in old new ; do
148 echo > $logfile.$ext
152 if [ $logfile = "old" ] ; then
161 runcmd $logfile \
163 "svn co ${valgrind_svn_repo} -r {$svn_date} valgrind-$logfile\
164 && svn update -r {$svn_date} valgrind-$logfile/VEX" && \
166 runcmd $logfile \
168 …"cd valgrind-$logfile && ./autogen.sh && ./configure --prefix=`pwd`/valgrind-$logfile/Inst ${ABT_…
170 runcmd $logfile \
172 … "cd valgrind-$logfile && make -j ${ABT_JOBS} && make -j ${ABT_JOBS} check && make install" && \
174 runcmd $logfile \
176 "cd valgrind-$logfile && ${ABT_RUN_REGTEST}"
181 egrep -q '^== [0-9]+ tests' $logfile.verbose && (
182 echo >> $logfile.short
183 echo "Regression test results follow" >> $logfile.short
184 echo >> $logfile.short
185 awk '/^== [0-9]+ tests/, /^$/ { print }' $logfile.verbose >> $logfile.short
187 echo >> $logfile.short
188 echo "Last 20 lines of verbose log follow" >> $logfile.short \
189 echo >> $logfile.short
190 tail -20 $logfile.verbose >> $logfile.short