Skip to content

Commit

Permalink
Skip C++ test on Windows
Browse files Browse the repository at this point in the history
Linking runs both dlltool and ld, so only overriding ld will confuse
the hell out of dlltool.
  • Loading branch information
Leont committed Sep 3, 2023
1 parent 8b0990b commit 0f48185
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion dist/ExtUtils-CBuilder/t/00-have-compiler.t
Expand Up @@ -62,7 +62,8 @@ my $b3 = ExtUtils::CBuilder->new(quiet => 1);
configure_fake_present_compilers($b3);
is( $b3->have_compiler, 1, "have_compiler: fake present cc" );
}
{
SKIP: {
skip 'C++ test is broken on windows', 1 if $^O eq 'MSWin32';
my $b4 = ExtUtils::CBuilder->new(quiet => 1);
configure_fake_present_compilers($b4);
is( $b4->have_cplusplus, 1, "have_cpp_compiler: fake present c++" );
Expand Down

0 comments on commit 0f48185

Please sign in to comment.