From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: AS31976 209.132.180.0/23 X-Spam-Status: No, score=-3.7 required=3.0 tests=AWL,BAYES_00, FREEMAIL_FORGED_FROMDOMAIN,FREEMAIL_FROM,HEADER_FROM_DIFFERENT_DOMAINS, RCVD_IN_DNSWL_HI,RP_MATCHES_RCVD shortcircuit=no autolearn=ham autolearn_force=no version=3.4.0 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by dcvr.yhbt.net (Postfix) with ESMTP id 4DBAB207B9 for ; Tue, 18 Apr 2017 22:29:38 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753045AbdDRW3g (ORCPT ); Tue, 18 Apr 2017 18:29:36 -0400 Received: from mout.web.de ([212.227.15.14]:53890 "EHLO mout.web.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752146AbdDRW3e (ORCPT ); Tue, 18 Apr 2017 18:29:34 -0400 Received: from [192.168.178.36] ([79.213.114.92]) by smtp.web.de (mrweb002 [213.165.67.108]) with ESMTPSA (Nemesis) id 0LyE3J-1bvjlv0Uxp-015YGr; Wed, 19 Apr 2017 00:29:22 +0200 Subject: Re: [PATCH] various: disallow --no-no-OPT for --no-opt options To: =?UTF-8?B?w4Z2YXIgQXJuZmrDtnLDsCBCamFybWFzb24=?= , git@vger.kernel.org Cc: Junio C Hamano References: <20170418170914.9701-1-avarab@gmail.com> From: =?UTF-8?Q?Ren=c3=a9_Scharfe?= Message-ID: Date: Wed, 19 Apr 2017 00:29:18 +0200 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko/20100101 Thunderbird/52.0.1 MIME-Version: 1.0 In-Reply-To: <20170418170914.9701-1-avarab@gmail.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 8bit X-Provags-ID: V03:K0:0oYro5wIjeP0yGnCfskOnEn39T5SbQrMCTVlRTfoJt9tge6FSzv 6/0A39o5Jvi8aZLTojycDQxAse47B3/sG2/+8aSTV2A2D0BQLv2efz9zkx2u1ksuIrO5cwc ecdudkP6gS8o34t0UapIu3zkXabqWYOytuGD3sFfoiNDV18gzS53K73LB1AWux974GaQBjo 6KvghR00utP7VreMYCeaQ== X-UI-Out-Filterresults: notjunk:1;V01:K0:PPD9nOcbaos=:D2jATVYlWCKP9dmo49dJhw Lb/JiGrqasPWeupbBIsf7k0pWit6wwq85OKbfNto8CpN9ZS3wvHxG+IWbCiOhlI1kQ6NIolS+ 944EyLQ4SOrx3ODzBcvKt6fbSFXQFHVlg+zwB9N3CnmUF0k3anO0pduqfg8pk+RN0RkN7CE+u Na6xZkrm6AfM5jbIwm4BVgWet8cKeOTvf+TqWA7BH23S5g2vW+HXlQslp5BHxQyGoXKN+/lq6 I3I2/CmWZCQgWFElo1t2uBQ/++P/sI7Clii0ueSrG7lZCqbgGusCkcya43efgVRNQPigPeQBH HoGrcfSSMfTrihPsee95yuDwcFHmQ/RPbuoK9W2LPTElxnaa+JYOHZagZRbml8LG+UrsWlFqM ivtpk/Jjf8Nn37ahbH+9if0sYPdnC58gPTvZb/1sxn7Rb/Gro22kUtd+sCdfYX8f//YVoLvwP oZ085Tta7Zuse+oRIApOyrAhlvFNSknOWPhKvtjjBtgVjlJvPxOiIDPEtWCAYBARHSTW04Fyb aqwFNgzFAbROLBU4DPbZMV8QeGw82CxFOIH3B5DsAwmylwZ6LDaCn1YGmjUqUMpPGpowu6TPu kk79WSVMy/mS1Jti8pTsF2pRFDc+ZoA/ZTnZ8cl/GgKx6sOPzFWFEPFB1dWqQORk4mrFkWcuC xXf0Aq0hlG61V+WySRWUGKeTUlEJAPeJptwcwAUahgriFsadCaTBw0Kikwy78rjRWNtBVVrw9 DBhcz0ooF/5tiSpJyo2vtmG/P1/mNL76yKoI6Bt9HZRY6G2ImboOeA97QvqhzxAgLjnYGm4xb XuOR1xd Sender: git-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org Am 18.04.2017 um 19:09 schrieb Ævar Arnfjörð Bjarmason: > Change various --no-OPT options which don't supply PARSE_OPT_NONEG to > make --no-no-OPT an error. > > All of these worked before this change, e.g. doing cloning by doing > "git clone --no-no-checkout" is equivalent to just "git clone", but > this was never intended, and is inconsistent with other --no-OPT > options which do pass PARSE_OPT_NONEG. First: Why does that bother you, i.e. what's the harm? Setting PARSE_OPT_NONEG takes away the ability to toggle the affected option. E.g. git clone would reject --checkout. Currently users can specify --no- options as defaults in aliases and override them on the command line if needed, with the patch that won't be possible anymore. PARSE_OPT_NONEG should only be used for options where a negation doesn't make sense, e.g. for the --stage option of checkout-index. Also: https://public-inbox.org/git/4F4D3545.6060704@lsrfire.ath.cx/ > Signed-off-by: Ævar Arnfjörð Bjarmason > --- > > For this one I'm not bothering to track down & CC every single person > who originally added these --no-OPT options. Clearly just a trivial > bug we can fix. > > apply.c | 2 +- > builtin/bisect--helper.c | 2 +- > builtin/check-ignore.c | 2 +- > builtin/checkout-index.c | 2 +- > builtin/clone.c | 4 ++-- > builtin/commit.c | 4 ++-- > builtin/fast-export.c | 2 +- > builtin/grep.c | 2 +- > builtin/hash-object.c | 2 +- > builtin/log.c | 4 ++-- > builtin/push.c | 2 +- > builtin/read-tree.c | 2 +- > builtin/revert.c | 2 +- > builtin/show-branch.c | 2 +- > builtin/update-ref.c | 2 +- > parse-options.h | 7 +++++++ > t/helper/test-parse-options.c | 1 + > t/t0040-parse-options.sh | 3 +++ > 18 files changed, 29 insertions(+), 18 deletions(-) > > diff --git a/apply.c b/apply.c > index e6dbab26ad..47a91d0762 100644 > --- a/apply.c > +++ b/apply.c > @@ -4917,7 +4917,7 @@ int apply_parse_options(int argc, const char **argv, > { OPTION_CALLBACK, 'p', NULL, state, N_("num"), > N_("remove leading slashes from traditional diff paths"), > 0, apply_option_parse_p }, > - OPT_BOOL(0, "no-add", &state->no_add, > + OPT_BOOL_NONEG(0, "no-add", &state->no_add, > N_("ignore additions made by the patch")), > OPT_BOOL(0, "stat", &state->diffstat, > N_("instead of applying the patch, output diffstat for the input")), > diff --git a/builtin/bisect--helper.c b/builtin/bisect--helper.c > index 3324229025..5fe9093947 100644 > --- a/builtin/bisect--helper.c > +++ b/builtin/bisect--helper.c > @@ -15,7 +15,7 @@ int cmd_bisect__helper(int argc, const char **argv, const char *prefix) > struct option options[] = { > OPT_BOOL(0, "next-all", &next_all, > N_("perform 'git bisect next'")), > - OPT_BOOL(0, "no-checkout", &no_checkout, > + OPT_BOOL_NONEG(0, "no-checkout", &no_checkout, > N_("update BISECT_HEAD instead of checking out the current commit")), > OPT_END() > }; > diff --git a/builtin/check-ignore.c b/builtin/check-ignore.c > index 1d73d3ca3d..cb6467946e 100644 > --- a/builtin/check-ignore.c > +++ b/builtin/check-ignore.c > @@ -24,7 +24,7 @@ static const struct option check_ignore_options[] = { > N_("terminate input and output records by a NUL character")), > OPT_BOOL('n', "non-matching", &show_non_matching, > N_("show non-matching input paths")), > - OPT_BOOL(0, "no-index", &no_index, > + OPT_BOOL_NONEG(0, "no-index", &no_index, > N_("ignore index when checking")), > OPT_END() > }; > diff --git a/builtin/checkout-index.c b/builtin/checkout-index.c > index 07631d0c9c..cf84e31ce8 100644 > --- a/builtin/checkout-index.c > +++ b/builtin/checkout-index.c > @@ -161,7 +161,7 @@ int cmd_checkout_index(int argc, const char **argv, const char *prefix) > OPT__FORCE(&force, N_("force overwrite of existing files")), > OPT__QUIET(&quiet, > N_("no warning for existing files and files not in index")), > - OPT_BOOL('n', "no-create", ¬_new, > + OPT_BOOL_NONEG('n', "no-create", ¬_new, > N_("don't checkout new files")), > OPT_BOOL('u', "index", &index_opt, > N_("update stat information in the index file")), > diff --git a/builtin/clone.c b/builtin/clone.c > index de85b85254..32c5843563 100644 > --- a/builtin/clone.c > +++ b/builtin/clone.c > @@ -76,7 +76,7 @@ static struct option builtin_clone_options[] = { > OPT__VERBOSITY(&option_verbosity), > OPT_BOOL(0, "progress", &option_progress, > N_("force progress reporting")), > - OPT_BOOL('n', "no-checkout", &option_no_checkout, > + OPT_BOOL_NONEG('n', "no-checkout", &option_no_checkout, > N_("don't create a checkout")), > OPT_BOOL(0, "bare", &option_bare, N_("create a bare repository")), > OPT_HIDDEN_BOOL(0, "naked", &option_bare, > @@ -85,7 +85,7 @@ static struct option builtin_clone_options[] = { > N_("create a mirror repository (implies bare)")), > OPT_BOOL('l', "local", &option_local, > N_("to clone from a local repository")), > - OPT_BOOL(0, "no-hardlinks", &option_no_hardlinks, > + OPT_BOOL_NONEG(0, "no-hardlinks", &option_no_hardlinks, > N_("don't use local hardlinks, always copy")), > OPT_BOOL('s', "shared", &option_shared, > N_("setup as shared repository")), > diff --git a/builtin/commit.c b/builtin/commit.c > index 4e288bc513..46830ebfaf 100644 > --- a/builtin/commit.c > +++ b/builtin/commit.c > @@ -1607,7 +1607,7 @@ int cmd_commit(int argc, const char **argv, const char *prefix) > OPT_BOOL(0, "interactive", &interactive, N_("interactively add files")), > OPT_BOOL('p', "patch", &patch_interactive, N_("interactively add changes")), > OPT_BOOL('o', "only", &only, N_("commit only specified files")), > - OPT_BOOL('n', "no-verify", &no_verify, N_("bypass pre-commit and commit-msg hooks")), > + OPT_BOOL_NONEG('n', "no-verify", &no_verify, N_("bypass pre-commit and commit-msg hooks")), > OPT_BOOL(0, "dry-run", &dry_run, N_("show what would be committed")), > OPT_SET_INT(0, "short", &status_format, N_("show status concisely"), > STATUS_FORMAT_SHORT), > @@ -1620,7 +1620,7 @@ int cmd_commit(int argc, const char **argv, const char *prefix) > OPT_BOOL('z', "null", &s.null_termination, > N_("terminate entries with NUL")), > OPT_BOOL(0, "amend", &amend, N_("amend previous commit")), > - OPT_BOOL(0, "no-post-rewrite", &no_post_rewrite, N_("bypass post-rewrite hook")), > + OPT_BOOL_NONEG(0, "no-post-rewrite", &no_post_rewrite, N_("bypass post-rewrite hook")), > { OPTION_STRING, 'u', "untracked-files", &untracked_files_arg, N_("mode"), N_("show untracked files, optional modes: all, normal, no. (Default: all)"), PARSE_OPT_OPTARG, NULL, (intptr_t)"all" }, > /* end commit contents options */ > > diff --git a/builtin/fast-export.c b/builtin/fast-export.c > index e0220630d0..dfbd245842 100644 > --- a/builtin/fast-export.c > +++ b/builtin/fast-export.c > @@ -994,7 +994,7 @@ int cmd_fast_export(int argc, const char **argv, const char *prefix) > N_("Output full tree for each commit")), > OPT_BOOL(0, "use-done-feature", &use_done_feature, > N_("Use the done feature to terminate the stream")), > - OPT_BOOL(0, "no-data", &no_data, N_("Skip output of blob data")), > + OPT_BOOL_NONEG(0, "no-data", &no_data, N_("Skip output of blob data")), > OPT_STRING_LIST(0, "refspec", &refspecs_list, N_("refspec"), > N_("Apply refspec to exported refs")), > OPT_BOOL(0, "anonymize", &anonymize, N_("anonymize output")), > diff --git a/builtin/grep.c b/builtin/grep.c > index 65070c52fc..923cc570e6 100644 > --- a/builtin/grep.c > +++ b/builtin/grep.c > @@ -978,7 +978,7 @@ int cmd_grep(int argc, const char **argv, const char *prefix) > struct option options[] = { > OPT_BOOL(0, "cached", &cached, > N_("search in index instead of in the work tree")), > - OPT_NEGBIT(0, "no-index", &use_index, > + OPT_NEGBIT_NONEG(0, "no-index", &use_index, > N_("find in contents not managed by git"), 1), > OPT_BOOL(0, "untracked", &untracked, > N_("search in both tracked and untracked files")), > diff --git a/builtin/hash-object.c b/builtin/hash-object.c > index bbeaf20bcc..c563f2a9ad 100644 > --- a/builtin/hash-object.c > +++ b/builtin/hash-object.c > @@ -96,7 +96,7 @@ int cmd_hash_object(int argc, const char **argv, const char *prefix) > HASH_WRITE_OBJECT), > OPT_COUNTUP( 0 , "stdin", &hashstdin, N_("read the object from stdin")), > OPT_BOOL( 0 , "stdin-paths", &stdin_paths, N_("read file names from stdin")), > - OPT_BOOL( 0 , "no-filters", &no_filters, N_("store file as is without filters")), > + OPT_BOOL_NONEG( 0 , "no-filters", &no_filters, N_("store file as is without filters")), > OPT_BOOL( 0, "literally", &literally, N_("just hash any random garbage to create corrupt objects for debugging Git")), > OPT_STRING( 0 , "path", &vpath, N_("file"), N_("process file as it were from this path")), > OPT_END() > diff --git a/builtin/log.c b/builtin/log.c > index b3b10cc1ed..9824e137ec 100644 > --- a/builtin/log.c > +++ b/builtin/log.c > @@ -1416,7 +1416,7 @@ int cmd_format_patch(int argc, const char **argv, const char *prefix) > PARSE_OPT_NOARG, numbered_callback }, > { OPTION_CALLBACK, 'N', "no-numbered", &numbered, NULL, > N_("use [PATCH] even with multiple patches"), > - PARSE_OPT_NOARG, no_numbered_callback }, > + PARSE_OPT_NOARG | PARSE_OPT_NONEG , no_numbered_callback }, > OPT_BOOL('s', "signoff", &do_signoff, N_("add Signed-off-by:")), > OPT_BOOL(0, "stdout", &use_stdout, > N_("print patches to standard out")), > @@ -1442,7 +1442,7 @@ int cmd_format_patch(int argc, const char **argv, const char *prefix) > { OPTION_CALLBACK, 'k', "keep-subject", &rev, NULL, > N_("don't strip/add [PATCH]"), > PARSE_OPT_NOARG | PARSE_OPT_NONEG, keep_callback }, > - OPT_BOOL(0, "no-binary", &no_binary_diff, > + OPT_BOOL_NONEG(0, "no-binary", &no_binary_diff, > N_("don't output binary diffs")), > OPT_BOOL(0, "zero-commit", &zero_commit, > N_("output all-zero hash in From header")), > diff --git a/builtin/push.c b/builtin/push.c > index 5c22e9f2e5..216307c0fa 100644 > --- a/builtin/push.c > +++ b/builtin/push.c > @@ -539,7 +539,7 @@ int cmd_push(int argc, const char **argv, const char *prefix) > OPT_BOOL(0, "progress", &progress, N_("force progress reporting")), > OPT_BIT(0, "prune", &flags, N_("prune locally removed refs"), > TRANSPORT_PUSH_PRUNE), > - OPT_BIT(0, "no-verify", &flags, N_("bypass pre-push hook"), TRANSPORT_PUSH_NO_HOOK), > + OPT_BIT_NONEG(0, "no-verify", &flags, N_("bypass pre-push hook"), TRANSPORT_PUSH_NO_HOOK), > OPT_BIT(0, "follow-tags", &flags, N_("push missing but relevant tags"), > TRANSPORT_PUSH_FOLLOW_TAGS), > { OPTION_CALLBACK, > diff --git a/builtin/read-tree.c b/builtin/read-tree.c > index 23e212ee8c..e9359ecb1e 100644 > --- a/builtin/read-tree.c > +++ b/builtin/read-tree.c > @@ -153,7 +153,7 @@ int cmd_read_tree(int argc, const char **argv, const char *unused_prefix) > OPT_BOOL('i', NULL, &opts.index_only, > N_("don't check the working tree after merging")), > OPT__DRY_RUN(&opts.dry_run, N_("don't update the index or the work tree")), > - OPT_BOOL(0, "no-sparse-checkout", &opts.skip_sparse_checkout, > + OPT_BOOL_NONEG(0, "no-sparse-checkout", &opts.skip_sparse_checkout, > N_("skip applying sparse checkout filter")), > OPT_BOOL(0, "debug-unpack", &opts.debug_unpack, > N_("debug unpack-trees")), > diff --git a/builtin/revert.c b/builtin/revert.c > index 345d9586a7..e708fdc228 100644 > --- a/builtin/revert.c > +++ b/builtin/revert.c > @@ -98,7 +98,7 @@ static int run_sequencer(int argc, const char **argv, struct replay_opts *opts) > OPT_CMDMODE(0, "quit", &cmd, N_("end revert or cherry-pick sequence"), 'q'), > OPT_CMDMODE(0, "continue", &cmd, N_("resume revert or cherry-pick sequence"), 'c'), > OPT_CMDMODE(0, "abort", &cmd, N_("cancel revert or cherry-pick sequence"), 'a'), > - OPT_BOOL('n', "no-commit", &opts->no_commit, N_("don't automatically commit")), > + OPT_BOOL_NONEG('n', "no-commit", &opts->no_commit, N_("don't automatically commit")), > OPT_BOOL('e', "edit", &opts->edit, N_("edit the commit message")), > OPT_NOOP_NOARG('r', NULL), > OPT_BOOL('s', "signoff", &opts->signoff, N_("add Signed-off-by:")), > diff --git a/builtin/show-branch.c b/builtin/show-branch.c > index 19756595d5..6827846b54 100644 > --- a/builtin/show-branch.c > +++ b/builtin/show-branch.c > @@ -638,7 +638,7 @@ int cmd_show_branch(int ac, const char **av, const char *prefix) > N_("show more commits after the common ancestor"), > PARSE_OPT_OPTARG, NULL, (intptr_t)1 }, > OPT_SET_INT(0, "list", &extra, N_("synonym to more=-1"), -1), > - OPT_BOOL(0, "no-name", &no_name, N_("suppress naming strings")), > + OPT_BOOL_NONEG(0, "no-name", &no_name, N_("suppress naming strings")), > OPT_BOOL(0, "current", &with_current_branch, > N_("include the current branch")), > OPT_BOOL(0, "sha1-name", &sha1_name, > diff --git a/builtin/update-ref.c b/builtin/update-ref.c > index 0b2ecf41ae..b9622b2136 100644 > --- a/builtin/update-ref.c > +++ b/builtin/update-ref.c > @@ -361,7 +361,7 @@ int cmd_update_ref(int argc, const char **argv, const char *prefix) > struct option options[] = { > OPT_STRING( 'm', NULL, &msg, N_("reason"), N_("reason of the update")), > OPT_BOOL('d', NULL, &delete, N_("delete the reference")), > - OPT_BOOL( 0 , "no-deref", &no_deref, > + OPT_BOOL_NONEG( 0 , "no-deref", &no_deref, > N_("update not the one it points to")), > OPT_BOOL('z', NULL, &end_null, N_("stdin has NUL-terminated arguments")), > OPT_BOOL( 0 , "stdin", &read_stdin, N_("read updates from stdin")), > diff --git a/parse-options.h b/parse-options.h > index af711227ae..8211d2d5f1 100644 > --- a/parse-options.h > +++ b/parse-options.h > @@ -118,13 +118,20 @@ struct option { > #define OPT_GROUP(h) { OPTION_GROUP, 0, NULL, NULL, NULL, (h) } > #define OPT_BIT(s, l, v, h, b) { OPTION_BIT, (s), (l), (v), NULL, (h), \ > PARSE_OPT_NOARG, NULL, (b) } > +#define OPT_BIT_NONEG(s, l, v, h, b) { OPTION_BIT, (s), (l), (v), NULL, (h), \ > + PARSE_OPT_NOARG | PARSE_OPT_NONEG, NULL, (b) } > #define OPT_NEGBIT(s, l, v, h, b) { OPTION_NEGBIT, (s), (l), (v), NULL, \ > (h), PARSE_OPT_NOARG, NULL, (b) } > +#define OPT_NEGBIT_NONEG(s, l, v, h, b) { OPTION_NEGBIT, (s), (l), (v), NULL, \ > + (h), PARSE_OPT_NOARG | PARSE_OPT_NONEG, NULL, (b) } > #define OPT_COUNTUP(s, l, v, h) { OPTION_COUNTUP, (s), (l), (v), NULL, \ > (h), PARSE_OPT_NOARG } > #define OPT_SET_INT(s, l, v, h, i) { OPTION_SET_INT, (s), (l), (v), NULL, \ > (h), PARSE_OPT_NOARG, NULL, (i) } > +#define OPT_SET_INT_NONEG(s, l, v, h, i) { OPTION_SET_INT, (s), (l), (v), NULL, \ > + (h), PARSE_OPT_NOARG | PARSE_OPT_NONEG, NULL, (i) } There's a whitespace error here ^^^^^^^^ according to git am. > #define OPT_BOOL(s, l, v, h) OPT_SET_INT(s, l, v, h, 1) > +#define OPT_BOOL_NONEG(s, l, v, h) OPT_SET_INT_NONEG(s, l, v, h, 1) > #define OPT_HIDDEN_BOOL(s, l, v, h) { OPTION_SET_INT, (s), (l), (v), NULL, \ > (h), PARSE_OPT_NOARG | PARSE_OPT_HIDDEN, NULL, 1} > #define OPT_CMDMODE(s, l, v, h, i) { OPTION_CMDMODE, (s), (l), (v), NULL, \ > diff --git a/t/helper/test-parse-options.c b/t/helper/test-parse-options.c > index a01430c24b..f6517a9305 100644 > --- a/t/helper/test-parse-options.c > +++ b/t/helper/test-parse-options.c > @@ -105,6 +105,7 @@ int cmd_main(int argc, const char **argv) > struct option options[] = { > OPT_BOOL(0, "yes", &boolean, "get a boolean"), > OPT_BOOL('D', "no-doubt", &boolean, "begins with 'no-'"), > + OPT_BOOL_NONEG(0, "no-neg", &boolean, "begins with 'no-', can't be negated"), > { OPTION_SET_INT, 'B', "no-fear", &boolean, NULL, > "be brave", PARSE_OPT_NOARG | PARSE_OPT_NONEG, NULL, 1 }, > OPT_COUNTUP('b', "boolean", &boolean, "increment by one"), > diff --git a/t/t0040-parse-options.sh b/t/t0040-parse-options.sh > index 74d2cd76fe..e571746775 100755 > --- a/t/t0040-parse-options.sh > +++ b/t/t0040-parse-options.sh > @@ -12,6 +12,7 @@ usage: test-parse-options > > --yes get a boolean > -D, --no-doubt begins with 'no-' > + --no-neg begins with 'no-', can't be negated > -B, --no-fear be brave > -b, --boolean increment by one > -4, --or4 bitwise-or boolean with ...0100 > @@ -80,6 +81,7 @@ check_unknown_i18n() { > > test_expect_success 'OPT_BOOL() #1' 'check boolean: 1 --yes' > test_expect_success 'OPT_BOOL() #2' 'check boolean: 1 --no-doubt' > +test_expect_success 'OPT_BOOL() #2' 'check boolean: 1 --no-neg' > test_expect_success 'OPT_BOOL() #3' 'check boolean: 1 -D' > test_expect_success 'OPT_BOOL() #4' 'check boolean: 1 --no-fear' > test_expect_success 'OPT_BOOL() #5' 'check boolean: 1 -B' > @@ -89,6 +91,7 @@ test_expect_success 'OPT_BOOL() is idempotent #2' 'check boolean: 1 -DB' > > test_expect_success 'OPT_BOOL() negation #1' 'check boolean: 0 -D --no-yes' > test_expect_success 'OPT_BOOL() negation #2' 'check boolean: 0 -D --no-no-doubt' > +test_expect_success 'OPT_BOOL() negation #3' 'test_must_fail test-parse-options --no-no-neg' > > test_expect_success 'OPT_BOOL() no negation #1' 'check_unknown_i18n --fear' > test_expect_success 'OPT_BOOL() no negation #2' 'check_unknown_i18n --no-no-fear' >