X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=t%2Fv2reindex.t;h=cafe8648d1e8b0dd1275f6af884585402e5aee70;hb=4eee5af6011cc8cdefb66c9729952c7eff5c0b0b;hp=56540c8b1847bbd4ea7aad3d6c0f04cb14569781;hpb=764105971054ce2352e38868fd1d3ae4e08c6784;p=public-inbox.git diff --git a/t/v2reindex.t b/t/v2reindex.t index 56540c8b..cafe8648 100644 --- a/t/v2reindex.t +++ b/t/v2reindex.t @@ -1,12 +1,9 @@ # Copyright (C) 2018-2021 all contributors # License: AGPL-3.0+ -use strict; -use warnings; -use Test::More; +use strict; use v5.10.1; use PublicInbox::TestCommon; use PublicInbox::Eml; use PublicInbox::ContentHash qw(content_digest); use File::Path qw(remove_tree); -use PublicInbox::TestCommon; require_git(2.6); require_mods(qw(DBD::SQLite Search::Xapian)); use_ok 'PublicInbox::V2Writable'; @@ -18,6 +15,7 @@ my $ibx_config = { version => 2, -primary_address => 'test@example.com', indexlevel => 'full', + -no_fsync => 1, }; my $agpl = do { open my $fh, '<', 'COPYING' or die "can't open COPYING: $!"; @@ -544,8 +542,16 @@ $check_rethread->('3-headed-monster once'); $check_rethread->('3-headed-monster twice'); my $rdr = { 2 => \(my $err = '') }; -ok(run_script([qw(-index --reindex --xapian-only), $inboxdir], undef, $rdr), +my $env = { PI_CONFIG => '/dev/null' }; +ok(run_script([qw(-index --reindex --xapian-only), $inboxdir], $env, $rdr), '--xapian-only works'); is($err, '', 'no errors from --xapian-only'); - +undef $for_destroy; +SKIP: { + skip 'only testing lsof(8) output on Linux', 1 if $^O ne 'linux'; + my $lsof = require_cmd('lsof', 1) or skip 'no lsof in PATH', 1; + my $rdr = { 2 => \(my $null_err) }; + my @d = grep(m!/xap[0-9]+/!, xqx([$lsof, '-p', $$], undef, $rdr)); + is_deeply(\@d, [], 'no deleted index files') or diag explain(\@d); +} done_testing();