[llvm-commits] CVS: llvm-test/RunSafelyAndStable.sh
John Criswell
criswell at cs.uiuc.edu
Wed Nov 10 11:49:43 PST 2004
Changes in directory llvm-test:
RunSafelyAndStable.sh updated: 1.2 -> 1.3
---
Log message:
Solaris sed doesn't like comments.
---
Diffs of the changes: (+2 -2)
Index: llvm-test/RunSafelyAndStable.sh
diff -u llvm-test/RunSafelyAndStable.sh:1.2 llvm-test/RunSafelyAndStable.sh:1.3
--- llvm-test/RunSafelyAndStable.sh:1.2 Sun Nov 7 15:28:32 2004
+++ llvm-test/RunSafelyAndStable.sh Wed Nov 10 13:49:27 2004
@@ -76,7 +76,7 @@
(time -p sh -c "$PROGRAM $* > $OUTFILE 2>&1 < $INFILE") 2>&1 | awk -- '\
BEGIN { cpu = 0.0; }
-/^real/ { /* IGNORE */; print }
+/^real/ { print }
/^user/ { cpu += $2; print }
/^sys/ { cpu += $2; print }
!/^real/ && !/^user/ && !/^sys/ { print }
@@ -87,7 +87,7 @@
(time -p sh -c "$PROGRAM $* > $OUTFILE 2>&1 < $INFILE") 2>&1 | awk -- '\
BEGIN { cpu = 0.0; }
-/^real/ { /* IGNORE */; print }
+/^real/ { print }
/^user/ { cpu += $2; print }
/^sys/ { cpu += $2; print }
!/^real/ && !/^user/ && !/^sys/ { print }
More information about the llvm-commits
mailing list