All of lore.kernel.org
 help / color / mirror / Atom feed
From: Patrick Steinhardt <ps@pks.im>
To: shejialuo <shejialuo@gmail.com>
Cc: git@vger.kernel.org
Subject: Re: [PATCH 5/5] u-string-list: move "remove duplicates" test to "u-string-list.c"
Date: Wed, 23 Apr 2025 13:53:19 +0200	[thread overview]
Message-ID: <aAjUr5AY9gTCpVlS@pks.im> (raw)
In-Reply-To: <aAet23peGs2OZUcn@ArchLinux>

On Tue, Apr 22, 2025 at 10:55:23PM +0800, shejialuo wrote:
> diff --git a/t/helper/test-string-list.c b/t/helper/test-string-list.c
> index 262b28c599..6be0cdb8e2 100644
> --- a/t/helper/test-string-list.c
> +++ b/t/helper/test-string-list.c
> @@ -1,48 +1,9 @@
> -#define DISABLE_SIGN_COMPARE_WARNINGS
> -
>  #include "test-tool.h"
>  #include "strbuf.h"
>  #include "string-list.h"
>  
> -/*
> - * Parse an argument into a string list.  arg should either be a
> - * ':'-separated list of strings, or "-" to indicate an empty string
> - * list (as opposed to "", which indicates a string list containing a
> - * single empty string).  list->strdup_strings must be set.
> - */
> -static void parse_string_list(struct string_list *list, const char *arg)
> -{
> -	if (!strcmp(arg, "-"))
> -		return;
> -
> -	(void)string_list_split(list, arg, ':', -1);
> -}
> -
> -static void write_list_compact(const struct string_list *list)
> -{
> -	int i;
> -	if (!list->nr)
> -		printf("-\n");
> -	else {
> -		printf("%s", list->items[0].string);
> -		for (i = 1; i < list->nr; i++)
> -			printf(":%s", list->items[i].string);
> -		printf("\n");
> -	}
> -}
> -
>  int cmd__string_list(int argc, const char **argv)
>  {
> -	if (argc == 3 && !strcmp(argv[1], "remove_duplicates")) {
> -		struct string_list list = STRING_LIST_INIT_DUP;
> -
> -		parse_string_list(&list, argv[2]);
> -		string_list_remove_duplicates(&list, 0);
> -		write_list_compact(&list);
> -		string_list_clear(&list, 0);
> -		return 0;
> -	}
> -
>  	if (argc == 2 && !strcmp(argv[1], "sort")) {
>  		struct string_list list = STRING_LIST_INIT_NODUP;
>  		struct strbuf sb = STRBUF_INIT;

I'm a bit surprised that the patch series stops after this patch given
that the only remaining subcommand is "sort". Is there a specific reason
why you don't also convert that function? If you did we could declare
victory by deleting the whole "test-helper string-list" subcommand.

It seems that the only reason is p0071, where we benchmark performance
of sorting. I dunno... that one is of course not a good fit for our unit
testing framework. But it's a bit sad that we cannot remove the whole
infra only because of a performance test that nobody ever runs in the
first place.

Patrick

  reply	other threads:[~2025-04-23 11:53 UTC|newest]

Thread overview: 52+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-04-22 14:53 [PATCH 0/5] enhance "string_list" code and test shejialuo
2025-04-22 14:54 ` [PATCH 1/5] string-list: fix sign compare warnings shejialuo
2025-04-22 21:02   ` Junio C Hamano
2025-04-24 12:27     ` shejialuo
2025-04-22 14:54 ` [PATCH 2/5] u-string-list: move "test_split" into "u-string-list.c" shejialuo
2025-04-22 21:27   ` Junio C Hamano
2025-04-24 12:50     ` shejialuo
2025-04-23 11:52   ` Patrick Steinhardt
2025-04-24 12:53     ` shejialuo
2025-04-22 14:55 ` [PATCH 3/5] u-string-list: move "test_split_in_place" to "u-string-list.c" shejialuo
2025-04-23 11:53   ` Patrick Steinhardt
2025-04-22 14:55 ` [PATCH 4/5] u-string-list: move "filter string" test " shejialuo
2025-04-22 14:55 ` [PATCH 5/5] u-string-list: move "remove duplicates" " shejialuo
2025-04-23 11:53   ` Patrick Steinhardt [this message]
2025-04-24 12:56     ` shejialuo
2025-05-18 15:55 ` [PATCH v2 0/8] enhance "string_list" code and test shejialuo
2025-05-18 15:56   ` [PATCH v2 1/8] string-list: fix sign compare warnings for loop iterator shejialuo
2025-05-19  7:17     ` Patrick Steinhardt
2025-05-26 13:50       ` shejialuo
2025-05-18 15:57   ` [PATCH v2 2/8] string-list: remove unused "insert_at" parameter from add_entry shejialuo
2025-05-19  7:17     ` Patrick Steinhardt
2025-05-26 13:52       ` shejialuo
2025-05-19  7:51     ` Jeff King
2025-05-26 14:01       ` shejialuo
2025-05-26 14:21         ` Patrick Steinhardt
2025-05-18 15:57   ` [PATCH v2 3/8] string-list: return index directly when inserting an existing element shejialuo
2025-05-19  7:18     ` Patrick Steinhardt
2025-05-26 14:13       ` shejialuo
2025-05-19  7:58     ` Jeff King
2025-05-26 14:20       ` shejialuo
2025-05-18 15:57   ` [PATCH v2 4/8] string-list: enable sign compare warnings check shejialuo
2025-05-19  7:18     ` Patrick Steinhardt
2025-05-26 14:27       ` shejialuo
2025-05-18 15:57   ` [PATCH v2 5/8] u-string-list: move "test_split" into "u-string-list.c" shejialuo
2025-05-19  7:17     ` Patrick Steinhardt
2025-05-18 15:57   ` [PATCH v2 6/8] u-string-list: move "test_split_in_place" to "u-string-list.c" shejialuo
2025-05-18 15:58   ` [PATCH v2 7/8] u-string-list: move "filter string" test " shejialuo
2025-05-19  7:18     ` Patrick Steinhardt
2025-05-26 14:33       ` shejialuo
2025-05-18 15:58   ` [PATCH v2 8/8] u-string-list: move "remove duplicates" " shejialuo
2025-05-19  7:18     ` Patrick Steinhardt
2025-06-29  4:26   ` [PATCH v3 0/8] enhance "string_list" code and test shejialuo
2025-06-29  4:27     ` [PATCH v3 1/8] string-list: fix sign compare warnings for loop iterator shejialuo
2025-06-29  4:27     ` [PATCH v3 2/8] string-list: remove unused "insert_at" parameter from add_entry shejialuo
2025-06-29  4:27     ` [PATCH v3 3/8] string-list: return index directly when inserting an existing element shejialuo
2025-06-29  4:28     ` [PATCH v3 4/8] string-list: enable sign compare warnings check shejialuo
2025-06-29  4:28     ` [PATCH v3 5/8] u-string-list: move "test_split" into "u-string-list.c" shejialuo
2025-06-29  4:28     ` [PATCH v3 6/8] u-string-list: move "test_split_in_place" to "u-string-list.c" shejialuo
2025-06-29  4:28     ` [PATCH v3 7/8] u-string-list: move "filter string" test " shejialuo
2025-06-29  4:28     ` [PATCH v3 8/8] u-string-list: move "remove duplicates" " shejialuo
2025-07-04  5:24     ` [PATCH v3 0/8] enhance "string_list" code and test Patrick Steinhardt
2025-07-07 15:10       ` 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=aAjUr5AY9gTCpVlS@pks.im \
    --to=ps@pks.im \
    --cc=git@vger.kernel.org \
    --cc=shejialuo@gmail.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.