From: Eric Wong <e@80x24.org> To: meta@public-inbox.org Subject: [PATCH 01/11] t/thread-index-gap.t: avoid unnecessary map Date: Tue, 9 Feb 2021 07:09:27 -0100 Message-ID: <20210209080937.4678-2-e@80x24.org> (raw) In-Reply-To: <20210209080937.4678-1-e@80x24.org> We only care abount the number of results. --- t/thread-index-gap.t | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/t/thread-index-gap.t b/t/thread-index-gap.t index 83c3707d..125c5cbd 100644 --- a/t/thread-index-gap.t +++ b/t/thread-index-gap.t @@ -47,14 +47,12 @@ for my $msgs (['orig', reverse @msgs], ['shuffle', shuffle(@msgs)]) { my $over = $ibx->over; my $dbh = $over->dbh; my $tid = $dbh->selectall_arrayref('SELECT DISTINCT(tid) FROM over'); - my @tid = map { $_->[0] } @$tid; - is(scalar(@tid), 1, "only one thread initially ($desc)"); + is(scalar(@$tid), 1, "only one thread initially ($desc)"); $over->dbh_close; - run_script([qw(-index --reindex --rethread), $ibx->{inboxdir}]) or - BAIL_OUT 'rethread'; + run_script([qw(-index --no-fsync --reindex --rethread), + $ibx->{inboxdir}]) or BAIL_OUT 'rethread'; $tid = $dbh->selectall_arrayref('SELECT DISTINCT(tid) FROM over'); - @tid = map { $_->[0] } @$tid; - is(scalar(@tid), 1, "only one thread after rethread ($desc)"); + is(scalar(@$tid), 1, "only one thread after rethread ($desc)"); } done_testing;
next prev parent reply other threads:[~2021-02-09 8:09 UTC|newest] Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top 2021-02-09 8:09 [PATCH 00/11] Maildir code consolidation, test updates Eric Wong 2021-02-09 8:09 ` Eric Wong [this message] 2021-02-09 8:09 ` [PATCH 02/11] test_common: disable fsync on the CLI where possible Eric Wong 2021-02-09 8:09 ` [PATCH 03/11] t/cgi.t: modernizations and style updates Eric Wong 2021-02-09 8:09 ` [PATCH 04/11] git: ->qx: respect caller's $/ in array context Eric Wong 2021-02-09 8:09 ` [PATCH 05/11] lei: split out MdirReader package, lazy-require earlier Eric Wong 2021-02-09 8:09 ` [PATCH 06/11] t/run.perl: fix for >128 tests Eric Wong 2021-02-09 8:09 ` [PATCH 07/11] use MdirReader in -watch and InboxWritable Eric Wong 2021-02-09 8:09 ` [PATCH 08/11] lei q: prefix --alert ops with ':' instead of '-' Eric Wong 2021-02-09 8:09 ` [PATCH 09/11] t/run.perl: drop Cwd dependency Eric Wong 2021-02-09 8:09 ` [PATCH 10/11] lei: replace "I:"-prefixed info messages with "#" Eric Wong 2021-02-09 8:09 ` [PATCH 11/11] tests|lei: fixes for TEST_RUN_MODE=0 and lei oneshot Eric Wong
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 List information: https://public-inbox.org/README * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=20210209080937.4678-2-e@80x24.org \ --to=e@80x24.org \ --cc=meta@public-inbox.org \ --subject='Re: [PATCH 01/11] t/thread-index-gap.t: avoid unnecessary map' \ /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
user/dev discussion of public-inbox itself This inbox may be cloned and mirrored by anyone: git clone --mirror https://public-inbox.org/meta git clone --mirror http://czquwvybam4bgbro.onion/meta git clone --mirror http://hjrcffqmbrq6wope.onion/meta git clone --mirror http://ou63pmih66umazou.onion/meta # If you have public-inbox 1.1+ installed, you may # initialize and index your mirror using the following commands: public-inbox-init -V1 meta meta/ https://public-inbox.org/meta \ meta@public-inbox.org public-inbox-index meta Example config snippet for mirrors. Newsgroups are available over NNTP: nntp://news.public-inbox.org/inbox.comp.mail.public-inbox.meta nntp://ou63pmih66umazou.onion/inbox.comp.mail.public-inbox.meta nntp://czquwvybam4bgbro.onion/inbox.comp.mail.public-inbox.meta nntp://hjrcffqmbrq6wope.onion/inbox.comp.mail.public-inbox.meta nntp://news.gmane.io/gmane.mail.public-inbox.general note: .onion URLs require Tor: https://www.torproject.org/ code repositories for project(s) associated with this inbox: https://80x24.org/public-inbox.git AGPL code for this site: git clone https://public-inbox.org/public-inbox.git