summaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorPhil Edwards <pme@gcc.gnu.org>2003-03-09 01:33:00 +0000
committerPhil Edwards <pme@gcc.gnu.org>2003-03-09 01:33:00 +0000
commit5ce810b77b5ec1024faf195ada9bf50af335db1d (patch)
treeb227d8d6ecba2534665d8179829606ce8cf1562f /contrib
parenta3600c718eb2abf543cd17458e98899958cdd839 (diff)
downloadgcc-5ce810b77b5ec1024faf195ada9bf50af335db1d.tar.gz
test_summary: Add -h, print existing comments as help.
2003-03-08 Phil Edwards <pme@gcc.gnu.org> * test_summary: Add -h, print existing comments as help. From-SVN: r64016
Diffstat (limited to 'contrib')
-rw-r--r--contrib/ChangeLog4
-rwxr-xr-xcontrib/test_summary21
2 files changed, 17 insertions, 8 deletions
diff --git a/contrib/ChangeLog b/contrib/ChangeLog
index 3055b4cb024..00253ca3cf0 100644
--- a/contrib/ChangeLog
+++ b/contrib/ChangeLog
@@ -1,3 +1,7 @@
+2003-03-08 Phil Edwards <pme@gcc.gnu.org>
+
+ * test_summary: Add -h, print existing comments as help.
+
2003-03-03 H.J. Lu <hjl@gnu.org>
* gcc_build: Use $GCC_CVS/$CVS instead of cvs.
diff --git a/contrib/test_summary b/contrib/test_summary
index 356d7b320ac..01fba6fd5d2 100755
--- a/contrib/test_summary
+++ b/contrib/test_summary
@@ -28,14 +28,19 @@
# test_summary | sh # so as to actually send e-mail and move log files
# It accepts a few command line arguments. For example:
-# -o: re-reads logs that have been mailed already (.sum.sent)
-# -t: prevents logs from being renamed
-# -p: prepend specified file (or list of files: -p "a b") to the report
-# -i: append specified file (or list of files: -i "a b") to the report
-# -m: specify the e-mail address to send notes to. An appropriate default
-# should be selected from the log files.
-# -f: force reports to be mailed; if omitted, only reports that differ
-# from the sent.* version are sent.
+if test x"$1" = "x-h"; then
+ cat <<_EOF
+ -o: re-reads logs that have been mailed already (.sum.sent)
+ -t: prevents logs from being renamed
+ -p: prepend specified file (or list of files: -p "a b") to the report
+ -i: append specified file (or list of files: -i "a b") to the report
+ -m: specify the e-mail address to send notes to. An appropriate default
+ should be selected from the log files.
+ -f: force reports to be mailed; if omitted, only reports that differ
+ from the sent.* version are sent.
+_EOF
+ exit 0
+fi
# Find a good awk.
if test -z "$AWK" ; then