[llvm-commits] CVS: llvm/test/Programs/RunSafely.sh
Chris Lattner
lattner at cs.uiuc.edu
Wed Jun 18 10:42:01 PDT 2003
Changes in directory llvm/test/Programs:
RunSafely.sh updated: 1.5 -> 1.6
---
Log message:
Capture the stderr output of the program as well as the stdout
---
Diffs of the changes:
Index: llvm/test/Programs/RunSafely.sh
diff -u llvm/test/Programs/RunSafely.sh:1.5 llvm/test/Programs/RunSafely.sh:1.6
--- llvm/test/Programs/RunSafely.sh:1.5 Sat May 31 18:16:10 2003
+++ llvm/test/Programs/RunSafely.sh Wed Jun 18 10:41:02 2003
@@ -25,7 +25,7 @@
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`
More information about the llvm-commits
mailing list