On Wed, Jan 10, 2024 at 06:44:56AM -0500, Jeff King wrote: > On Fri, Jan 05, 2024 at 11:33:23AM -0500, Taylor Blau wrote: > > > - test_must_fail git index-pack --fix-thin --stdin <recoverable.pack > > + test_must_fail git index-pack --threads=1 --fix-thin --stdin <recoverable.pack > > [...] > > For what it's worth, I'm fine with either approach, mostly to avoid > > tying up more of the list's time discussing the options. But I have a > > vague preference towards `--threads=1` since it doesn't require us to > > touch production code. > > That's quite tempting, actually. The flip side, though, is that the test > no longer reflects the production code as well. That is, in the real > world we'd still call exit() from a thread. That obviously works OK now > (modulo LSan), but if we ever had a regression where that left us in an > inconsistent state, we'd be less likely to notice it. Feels kind of > unlikely in practice, though. > > I dunno. I guess the real least-bad thing is seeing if LSan can be > fixed to handle this atomically. I haven't even reported it there. In the meantime, I think that the `--threads=1` approach feels less invasive. I tend to agree that neither option is ideal, but that `--threads=1` is probably the least bad, and that failing to catch a regression there feels rather unlikely. > If do go with "--threads=1", I suspect several tests in that file need > it. Yeah, there are a couple of others. I think the ones that need modifying are at the intersection of "expected to fail" and "in a test which is expected to pass leak-free": $ grep -l 'TEST_PASSES_SANITIZE_LEAK=true' t????-*.sh | xargs grep -l 'test_must_fail git index-pack' t5302-pack-index.sh t5308-pack-detect-duplicates.sh t5309-pack-delta-cycles.sh t5313-pack-bounds-checks.sh t5325-reverse-index.sh I'll send a series shortly to tweak those test scripts to avoid this issue if you want to notify the LSan folks of this issue more generally. > -Peff Thanks, Taylor