Ensure that the bug-reporting address is
authorJim Meyering <jim@meyering.net>
Thu, 20 Nov 2003 08:08:24 +0000 (08:08 +0000)
committerJim Meyering <jim@meyering.net>
Thu, 20 Nov 2003 08:08:24 +0000 (08:08 +0000)
included in the --help output for every program.

tests/help-version

index c5c4d86..67e77ad 100755 (executable)
@@ -54,9 +54,12 @@ for lang in C fr da; do
     test $i = install && i=ginstall
 
     # Make sure they exit successfully, under normal conditions.
-    ../src/$i --help    >/dev/null || fail=1
+    ../src/$i --help    > h-$i     || fail=1
     ../src/$i --version >/dev/null || fail=1
 
+    # Make sure they mention the bug-reporting address in --help output.
+    grep "$PACKAGE_BUGREPORT" h-$i > /dev/null || fail=1
+
     # Make sure they fail upon `disk full' error.
     if test -w /dev/full && test -c /dev/full; then
       ../src/$i --help    >/dev/full 2>/dev/null && fail=1