Capture the stderr output of the program as well as the stdout

git-svn-id: https://llvm.org/svn/llvm-project/test-suite/trunk@6766 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2003-06-18 15:41:02 +00:00
Родитель fd7381ef41
Коммит 1f8afb00c4
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -25,7 +25,7 @@ shift
ulimit -t $ULIMIT
rm -f core core.*
ulimit -c unlimited
(time -p $PROGRAM $* > $OUTFILE < $INFILE) 2> $OUTFILE.time
(time -p $PROGRAM $* 2> $OUTFILE > $OUTFILE < $INFILE) 2> $OUTFILE.time
if ls | egrep "^core" > /dev/null
then
corefile=`ls core* | head -1`