git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
* [PATCH v2] diff: fix --relative without arguments
@ 2017-12-07  0:59 Jacob Keller
  2017-12-07 15:26 ` Junio C Hamano
  0 siblings, 1 reply; 3+ messages in thread
From: Jacob Keller @ 2017-12-07  0:59 UTC (permalink / raw)
  To: git; +Cc: Junio C Hamano, Christian Couder, Jacob Keller

From: Jacob Keller <jacob.keller@gmail.com>

Recently, commit f7923a5ece00 ("diff: use skip_to_optional_val()",
2017-12-04) changed how we parsed some diff options, preferring
skip_to_optional_val instead of a more complex skip_prefix() setup.

Unfortunately, this breaks --relative, because of the semantics of
skip_to_optional_val. If no optional_val is given, then the function
puts the empty string "" into the arg. Unfortunately, relative passes in
options->prefix as the location for the optional argument, and expects
this value to remain unchanged if no optional value was given.

This results in breaking --relative when no arguments are provided. This
cascades into many failures of code flow that rely on this.

Partially revert the commit, and restore --relative option parsing to
the previous working code.

Since no tests exist for --relative without options, add a new test
which will help ensure no future regressions.

Signed-off-by: Jacob Keller <jacob.keller@gmail.com>
---
Actually perform the revert of --relative handling.

 diff.c                   | 6 +++++-
 t/t4045-diff-relative.sh | 5 +++++
 2 files changed, 10 insertions(+), 1 deletion(-)

diff --git a/diff.c b/diff.c
index b62e4b61b564..1919afb4f104 100644
--- a/diff.c
+++ b/diff.c
@@ -4581,8 +4581,12 @@ int diff_opt_parse(struct diff_options *options,
 		options->flags.rename_empty = 1;
 	else if (!strcmp(arg, "--no-rename-empty"))
 		options->flags.rename_empty = 0;
-	else if (skip_to_optional_val(arg, "--relative", &options->prefix))
+	else if (!strcmp(arg, "--relative"))
 		options->flags.relative_name = 1;
+	else if (skip_prefix(arg, "--relative=", &arg)) {
+		options->flags.relative_name = 1;
+		options->prefix = arg;
+	}
 
 	/* xdiff options */
 	else if (!strcmp(arg, "--minimal"))
diff --git a/t/t4045-diff-relative.sh b/t/t4045-diff-relative.sh
index 3950f5034d31..41e4f59b2ffb 100755
--- a/t/t4045-diff-relative.sh
+++ b/t/t4045-diff-relative.sh
@@ -70,4 +70,9 @@ for type in diff numstat stat raw; do
 	check_$type dir/file2 --relative=sub
 done
 
+cd subdir
+for type in diff numstat stat raw; do
+	check_$type file2 --relative
+done
+
 test_done
-- 
2.15.1.477.g3ed0a2a61da8


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH v2] diff: fix --relative without arguments
  2017-12-07  0:59 [PATCH v2] diff: fix --relative without arguments Jacob Keller
@ 2017-12-07 15:26 ` Junio C Hamano
  2017-12-07 19:01   ` Jacob Keller
  0 siblings, 1 reply; 3+ messages in thread
From: Junio C Hamano @ 2017-12-07 15:26 UTC (permalink / raw)
  To: Jacob Keller; +Cc: git, Christian Couder, Jacob Keller

Jacob Keller <jacob.e.keller@intel.com> writes:

> From: Jacob Keller <jacob.keller@gmail.com>
>
> Recently, commit f7923a5ece00 ("diff: use skip_to_optional_val()",
> 2017-12-04) changed how we parsed some diff options, preferring
> skip_to_optional_val instead of a more complex skip_prefix() setup.

I'd expect a moral equivalent of this squashed in when Christian
rerolls the skip-to-optional-val series (with helped-by: attribution
to you, probably).  It does not make much sense to leave the initial
breakage like this one in the history.

Thanks.

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH v2] diff: fix --relative without arguments
  2017-12-07 15:26 ` Junio C Hamano
@ 2017-12-07 19:01   ` Jacob Keller
  0 siblings, 0 replies; 3+ messages in thread
From: Jacob Keller @ 2017-12-07 19:01 UTC (permalink / raw)
  To: Junio C Hamano; +Cc: Jacob Keller, Git mailing list, Christian Couder

On Thu, Dec 7, 2017 at 7:26 AM, Junio C Hamano <gitster@pobox.com> wrote:
> Jacob Keller <jacob.e.keller@intel.com> writes:
>
>> From: Jacob Keller <jacob.keller@gmail.com>
>>
>> Recently, commit f7923a5ece00 ("diff: use skip_to_optional_val()",
>> 2017-12-04) changed how we parsed some diff options, preferring
>> skip_to_optional_val instead of a more complex skip_prefix() setup.
>
> I'd expect a moral equivalent of this squashed in when Christian
> rerolls the skip-to-optional-val series (with helped-by: attribution
> to you, probably).  It does not make much sense to leave the initial
> breakage like this one in the history.
>
> Thanks.

Quite correct. I'll be sending a patch with just new tests shortly.

Thanks,
Jake

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2017-12-07 19:01 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-12-07  0:59 [PATCH v2] diff: fix --relative without arguments Jacob Keller
2017-12-07 15:26 ` Junio C Hamano
2017-12-07 19:01   ` Jacob Keller

Code repositories for project(s) associated with this public inbox

	https://80x24.org/mirrors/git.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).