The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use strict;
use Test::More;
BEGIN {
    if (! $ENV{TEST_LEAK}) {
        plan skip_all => "Set TEST_LEAK to run leak tests";
    }
}

use Test::Requires
    'Test::Valgrind',
    'XML::Parser',
;

while ( my $f = <t/*.t> ) {
    subtest $f => sub { do $f };
}

while ( my $f = <t/*.t> ) {
    for my $i (1..10) {
        subtest $f => sub { do $f };
    }
}

done_testing;