git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: "Ghanshyam Thakkar" <shyamthakkar001@gmail.com>
To: "Christian Couder" <christian.couder@gmail.com>
Cc: <git@vger.kernel.org>,
	"Christian Couder" <chriscool@tuxfamily.org>,
	"Kaartic Sivaraam" <kaartic.sivaraam@gmail.com>,
	"Josh Steadmon" <steadmon@google.com>,
	"Junio C Hamano" <gitster@pobox.com>,
	"Phillip Wood" <phillip.wood123@gmail.com>
Subject: Re: [PATCH v4] t: port helper/test-hashmap.c to unit-tests/t-hashmap.c
Date: Fri, 02 Aug 2024 07:58:36 +0530	[thread overview]
Message-ID: <D352L1G9SF8Z.1NMPOJB2YOLRT@gmail.com> (raw)
In-Reply-To: <CAP8UFD04uQbWhY0QDp+nC8VyBvpUs=tBDm=w4CzKK2GcwFZdGQ@mail.gmail.com>

Christian Couder <christian.couder@gmail.com> wrote:
> Hi Ghanshyam,
>
> Not sure why the "From:" header of this email says:
>
> "From: A U Thor <shyamthakkar001@gmail.com>"
>
> Did you make changes to your config or something?

I think I must have changed the user to "A U Thor <author@exmaple.com>"
in the repo config while testing something, but don't consciously remember
doing so.

>
> On Tue, Jul 30, 2024 at 1:52 PM A U Thor <shyamthakkar001@gmail.com>
> wrote:
> >
> > From: Ghanshyam Thakkar <shyamthakkar001@gmail.com>
>
>
> > Changes in v4:
> > - update commit message to add a reference and fix typo
> > - change 'int ignore_case' to 'unsigned int ignore_case'
> > - make 'ignore_case' the last parameter in all the functions
> > - update t_get() to add a testcase query for better ignore-case
> >   checking
> >
> > Range-diff against v3:
>
>
> >     -+static void t_get(struct hashmap *map, int ignore_case)
> >     ++static void t_get(struct hashmap *map, unsigned int ignore_case)
> >      +{
> >      +  struct test_entry *entry;
> >      +  const char *key_val[][2] = { { "key1", "value1" },
> >      +                               { "key2", "value2" },
> >      +                               { "fooBarFrotz", "value3" },
> >     -+                               { ignore_case ? "key4" : "foobarfrotz", "value4" } };
> >     ++                               { ignore_case ? "TeNor" : "tenor",
> >     ++                                 ignore_case ? "value4" : "value5" } };
> >      +  const char *query[][2] = {
> >      +          { ignore_case ? "Key1" : "key1", "value1" },
> >      +          { ignore_case ? "keY2" : "key2", "value2" },
> >     -+          { ignore_case ? "foobarfrotz" : "fooBarFrotz", "value3" }
> >     ++          { ignore_case ? "FOObarFrotz" : "fooBarFrotz", "value3" },
> >     ++          { ignore_case ? "TENOR" : "tenor",
> >     ++            ignore_case ? "value4" : "value5" }
> >      +  };
>
> I suggested adding the following test case:
>
> { ignore_case ? "FOOBarFrotZ" : "foobarfrotz",
> ignore_case ? : "value3" : "value4" }
>
> to better check that things work well especially when not ignoring the
> case.
>
> This is because, when not ignoring the case, there used to be a choice
> between { "fooBarFrotz", "value3" } and { "foobarfrotz", "value4" }
> that can be decided only by the case of the key in 'query'. But
> instead you removed that choice from 'key_val'.

Yeah, you're correct about the choice thing. I think I misunderstood
your comments from the previous version. Will update.

Thanks.


  parent reply	other threads:[~2024-08-02  2:28 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-06-28 12:41 [GSoC][PATCH] t: port helper/test-hashmap.c to unit-tests/t-hashmap.c Ghanshyam Thakkar
2024-07-08 16:15 ` [GSoC][PATCH v2] " Ghanshyam Thakkar
2024-07-09 19:34   ` Josh Steadmon
2024-07-09 21:42     ` Junio C Hamano
2024-07-10 19:41       ` Ghanshyam Thakkar
2024-07-09 23:27     ` Ghanshyam Thakkar
2024-07-10 10:19     ` Phillip Wood
2024-07-11 18:54       ` Ghanshyam Thakkar
2024-07-11 23:51   ` [GSoC][PATCH v3] " Ghanshyam Thakkar
2024-07-12  0:00     ` Ghanshyam Thakkar
2024-07-12 17:14       ` Junio C Hamano
2024-07-25 12:48     ` Christian Couder
2024-07-30 11:50     ` [PATCH v4] " A U Thor
2024-07-31 17:18       ` Christian Couder
2024-07-31 18:50         ` Junio C Hamano
2024-08-02  2:28         ` Ghanshyam Thakkar [this message]
2024-08-03 13:34       ` [GSoC][PATCH v5] " Ghanshyam Thakkar
2024-08-07 14:33         ` Christian Couder
2024-08-07 14:44           ` Ghanshyam Thakkar
2024-08-07 16:20           ` Junio C Hamano

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=D352L1G9SF8Z.1NMPOJB2YOLRT@gmail.com \
    --to=shyamthakkar001@gmail.com \
    --cc=chriscool@tuxfamily.org \
    --cc=christian.couder@gmail.com \
    --cc=git@vger.kernel.org \
    --cc=gitster@pobox.com \
    --cc=kaartic.sivaraam@gmail.com \
    --cc=phillip.wood123@gmail.com \
    --cc=steadmon@google.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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 NNTP newsgroup(s).