Skip to content

Commit

Permalink
Item14237: Skipping test for supported non-ASCII on macOS/darwin
Browse files Browse the repository at this point in the history
Needs more investigation.
  • Loading branch information
vrurg committed May 14, 2018
1 parent 6a84d19 commit f567d24
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions UnitTestContrib/test/unit/UploadScriptTests.pm
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,16 @@ sub skip {
'Tests for iso-8859 character sets not supported: Path contains non-ASCII characters',
);

return $skip_tests{$test}
if ( defined $test && defined $skip_tests{$test} );
}

if ( $^O eq 'darwin' ) {
%skip_tests = ( 'UploadScriptTests::test_supported_nonascii' =>
"Test fails on macOS/darwin; needs more investigation", );
}

return $skip_tests{$test}
if ( defined $test && defined $skip_tests{$test} );

return undef;

}
Expand Down

0 comments on commit f567d24

Please sign in to comment.