[llvm-commits] CVS: llvm-test/RunSafely.sh
Reid Spencer
reid at x10sys.com
Thu Jan 11 12:56:08 PST 2007
Changes in directory llvm-test:
RunSafely.sh updated: 1.25 -> 1.26
---
Log message:
Don't re-direct stderr to the output file. This can cause differences.
---
Diffs of the changes: (+1 -1)
RunSafely.sh | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm-test/RunSafely.sh
diff -u llvm-test/RunSafely.sh:1.25 llvm-test/RunSafely.sh:1.26
--- llvm-test/RunSafely.sh:1.25 Wed Jan 10 11:51:45 2007
+++ llvm-test/RunSafely.sh Thu Jan 11 14:55:52 2007
@@ -80,7 +80,7 @@
COMMAND="${DIR}TimedExec.sh $ULIMIT $COMMAND"
fi
-( time -p sh -c "$COMMAND >$OUTFILE 2>&1 < $INFILE" ; echo exit $? ) 2>&1 \
+( time -p sh -c "$COMMAND >$OUTFILE < $INFILE" ; echo exit $? ) 2>&1 \
| awk -- '\
BEGIN { cpu = 0.0; }
/^user/ { cpu += $2; print; }
More information about the llvm-commits
mailing list