aboutsummaryrefslogtreecommitdiff
path: root/src/cmdline.opt
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org>2020-04-23 21:14:49 +0300
committerSergey Poznyakoff <gray@gnu.org>2020-04-23 21:27:47 +0300
commit8234484dba123ad8001657def8fb57133f9610bf (patch)
tree3c648730985b0ec37ed6fa5af7fe35fedaeb3c31 /src/cmdline.opt
parent80466e8f237077f11134554ab1a68b47f49616e2 (diff)
downloadwydawca-8234484dba123ad8001657def8fb57133f9610bf.tar.gz
wydawca-8234484dba123ad8001657def8fb57133f9610bf.tar.bz2
Rewrite the testsuite.
Use gpg2 to create the keys, and sign files as necessary. * NEWS: Update. * doc/wydawca.texi: Update. * configure.ac: Detect the presence of GPG version 2. * src/cmdline.opt (--single-process): Remove. * src/config.c: Remove the "single-process" statement. * src/triplet.c (triplet_enqueue): Fix eventual NULL dereference. (wy_triplet_wait): Update the WY_STAT_INCOMPLETE_TRIPLETS counter. * src/wydawca.c (single_process_option): Remove global. * src/wydawca.h (single_process): Remove global. * tests/.gitignore: Update. * tests/Makefile.am: Update. * tests/atlocal.in: Rewrite. * tests/chargen.c: New auxiliary tool * tests/dist/file: Remove. * tests/dist/file.directive.asc: Remove. * tests/dist/file.sig: Remove. * tests/dist/file12f.directive.asc: Remove. * tests/dist/file12t.directive.asc: Reemove. * tests/dist/rmsymlink.directive.asc: Remove. * tests/dist/symlink.directive.asc: Remove. * tests/etc/notify.cfin: Rename to tests/etc/notify.cf * tests/etc/Makefile.am: Update. * tests/etc/dbgen.sh: New file. * tests/etc/keygen.sh: New file. * tests/etc/project: New file. * tests/etc/pubring.asc: Remove. * tests/etc/secring.asc: Remove. * tests/etc/wydawca.cfin: Remove. * tests/*.at: Rewrite.
Diffstat (limited to 'src/cmdline.opt')
-rw-r--r--src/cmdline.opt12
1 files changed, 3 insertions, 9 deletions
diff --git a/src/cmdline.opt b/src/cmdline.opt
index fae3cb1..a23335d 100644
--- a/src/cmdline.opt
+++ b/src/cmdline.opt
@@ -96,12 +96,6 @@ BEGIN
foreground_option = 1;
END
-OPTION(single-process,,,
- [<single process mode>])
-BEGIN
- single_process_option = 1;
-END
-
OPTION(config-file,c,FILE,
[<use FILE instead of the default configuration>])
BEGIN
@@ -180,10 +174,10 @@ END
GROUP(Debugging)
-OPTION(debug,d,,
- [<increase debugging level>])
+OPTION(debug,d,[<LEVEL>],
+ [<set debugging level>])
BEGIN
- wy_debug_level++;
+ wy_debug_level = atoi(optarg);
END
OPTION(dump-grammar-trace,,,

Return to:

Send suggestions and report system problems to the System administrator.