Skip to content

Commit 45a6a79

Browse files
committed
Fix the OS regex skip in 03-xsstatic.t
1 parent d031774 commit 45a6a79

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

t/03-xsstatic.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ use Test::More;
1414
plan skip_all => "ExtUtils::CBuilder not installed or couldn't find a compiler"
1515
unless have_compiler();
1616
plan skip_all => 'Shared perl library' if $Config{useshrplib} eq 'define';
17-
plan skip_all => $^O if $^O =~ m!^(MSWin32|cygwin|haiku)!;
17+
plan skip_all => $^O if $^O =~ m!^(MSWin32|cygwin|haiku)$!;
1818
my @tests = list_static();
1919
plan skip_all => "No tests" unless @tests;
2020
plan tests => 6 * @tests;

0 commit comments

Comments
 (0)