changeset 8758:29e3274acedc

Update
author Sergey Poznyakoff <gray@gnu.org.ua>
date Sun, 29 Apr 2007 12:04:15 +0000
parents 9f37008981ab
children 95c5da6920cb
files ChangeLog tests/test-argp-2.sh
diffstat 2 files changed, 31 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,14 @@
+2007-04-29  Sergey Poznyakoff  <gray@gnu.org.ua>
+
+	* lib/argp-help.c (hol_cluster_cmp): Reverse comparison.  Change
+	proposed by Sven Verdoolaege.
+
+	* tests/test-argp.c: Fix option ordering.  Test deeply clustered
+	options.
+	* tests/test-argp-2.sh (func_compare): Use diff instead of
+	cmp.  Change proposed by Bruno Haible
+	(usage and help tests): Update
+
 2007-04-29  Bruno Haible  <bruno@clisp.org>
 
 	* tests/test-fflush.c (main): Use a file of size 17, not 10.
--- a/tests/test-argp-2.sh
+++ b/tests/test-argp-2.sh
@@ -26,15 +26,16 @@
 # If argp was compiled without base_name, it will display full program name
   sed '1{
          s,: [^ ]*/test-argp,: test-argp,
-        }' | diff -c $TMP -
+        }' | diff -pu $TMP -
 }  
 
 ####
 # Test --usage output
 cat > $TMP <<EOT
-Usage: test-argp [-tvO?V] [-f FILE] [-o[ARG]] [--test] [--file=FILE]
-            [--input=FILE] [--verbose] [--optional[=ARG]] [--option] [--help]
-            [--usage] [--version] ARGS...
+Usage: test-argp [-tvCSOlp?V] [-f FILE] [-o[ARG]] [--test] [--file=FILE]
+            [--input=FILE] [--verbose] [--cantiga] [--sonet] [--option]
+            [--optional[=ARG]] [--limerick] [--poem] [--help] [--usage]
+            [--version] ARGS...
 EOT
 
 ./test-argp --usage | func_compare || ERR=1
@@ -44,7 +45,7 @@
 
 cat > $TMP <<EOT
 Usage: test-argp [-tvO?V] [-f FILE] [-o[ARG]] [--test] [--file=FILE]
-[--input=FILE] [--verbose] [--optional[=ARG]] [--option] [--help] [--usage]
+[--input=FILE] [--verbose] [--option] [--optional[=ARG]] [--help] [--usage]
 [--version] ARGS...
 EOT
 
@@ -63,15 +64,24 @@
   -f, --file=FILE, --input=FILE   Option with a mandatory argument
   -v, --verbose              Simple option without arguments
 
+ Option Group 1.1
+  -C, --cantiga              create a cantiga
+  -S, --sonet                create a sonet
+
  Option Group 2
+  -O, --option               An option
+
   -o, --optional[=ARG]       Option with an optional argument. ARG is one of
                              the following:
-  -O, --option               An option
 
   many                       many units
   one                        one unit
   two                        two units
 
+ Option Group 2.1
+  -l, --limerick             create a limerick
+  -p, --poem                 create a poem
+
   -?, --help                 give this help list
       --usage                give a short usage message
   -V, --version              print program version
@@ -89,6 +99,10 @@
 
 ./test-argp --optio 2>/dev/null && ERR=1
 
+####
+# Run built-in tests
+./test-argp || ERR=1
+
 rm $TMP
 
 exit $ERR