[llvm-commits] CVS: llvm-test/RunSafely.sh
Reid Spencer
reid at x10sys.com
Thu Jan 11 13:01:47 PST 2007
Changes in directory llvm-test:
RunSafely.sh updated: 1.26 -> 1.27
---
Log message:
Back out the last patch. We want to include the stderr in the diff'd
output. I got fooled by stale *.out-nat files resulting from a local
change.
---
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.26 llvm-test/RunSafely.sh:1.27
--- llvm-test/RunSafely.sh:1.26 Thu Jan 11 14:55:52 2007
+++ llvm-test/RunSafely.sh Thu Jan 11 15:01:31 2007
@@ -80,7 +80,7 @@
COMMAND="${DIR}TimedExec.sh $ULIMIT $COMMAND"
fi
-( time -p sh -c "$COMMAND >$OUTFILE < $INFILE" ; echo exit $? ) 2>&1 \
+( time -p sh -c "$COMMAND >$OUTFILE 2>&1 < $INFILE" ; echo exit $? ) 2>&1 \
| awk -- '\
BEGIN { cpu = 0.0; }
/^user/ { cpu += $2; print; }
More information about the llvm-commits
mailing list