Skip to content

Commit

Permalink
t/harness temp tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
khwilliamson committed May 6, 2023
1 parent bac344f commit 2e3e000
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions t/harness
Expand Up @@ -22,6 +22,8 @@ BEGIN {
# Example: ../cpan/IO-Zlib/t/basic.t
#
my @_must_be_executed_serially = qw(
../dist/Tie-File/t/24_cache_loop.t
../ext/File-Find/t/taint.t
);
my %must_be_executed_serially = map { $_ => 1 } @_must_be_executed_serially;
##############################################################################
Expand All @@ -35,16 +37,18 @@ my %must_be_executed_serially = map { $_ => 1 } @_must_be_executed_serially;
#
# Example: ../dist/threads-shared/t/waithires.t
#
my @_must_be_executed_alone = qw();
my @_must_be_executed_alone = qw(
re/speed_thr.t
../dist/Tie-File/t/29a_upcopy.t
);
push @_must_be_executed_alone, "../dist/threads-shared/t/waithires.t"
if $^O ne "linux";
my %must_be_executed_alone = map { $_ => 1 } @_must_be_executed_alone;

my $OS = $ENV{FAKE_OS} || $^O;
my $is_linux = $OS eq "linux";
my $is_win32 = $OS eq "MSWin32";

if (!$is_linux) {
$must_be_executed_alone{"../dist/threads-shared/t/waithires.t"} = 1;
}
##############################################################################

my $torture; # torture testing?
Expand Down

0 comments on commit 2e3e000

Please sign in to comment.