-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Mingw: Exclude failing tests due to the crt change
Mingw crt-git 12.0.0.r369.g0d4221712-1 now prohibits "command line contains characters that are not supported in the active code page". https://sourceforge.net/p/mingw-w64/mingw-w64/ci/0d42217123d3aec0341b79f6d959c76e09648a1e/ Provisionally exclude tests that fail by passing such characters.
- Loading branch information
Showing
2 changed files
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
if RUBY_PLATFORM.include?("mingw") | ||
reason = <<~EOS | ||
Mingw crt-git 12.0.0.r369.g0d4221712-1 now prohibits "command line | ||
contains characters that are not supported in the active code page". | ||
https://sourceforge.net/p/mingw-w64/mingw-w64/ci/0d42217123d3aec0341b79f6d959c76e09648a1e/ | ||
EOS | ||
|
||
exclude(:test_inplace_nonascii, reason) | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
if RUBY_PLATFORM.include?("mingw") | ||
reason = <<~EOS | ||
Mingw crt-git 12.0.0.r369.g0d4221712-1 now prohibits "command line | ||
contains characters that are not supported in the active code page". | ||
https://sourceforge.net/p/mingw-w64/mingw-w64/ci/0d42217123d3aec0341b79f6d959c76e09648a1e/ | ||
EOS | ||
|
||
exclude(:test_chdir, reason) | ||
exclude(:test_locale_codepage, reason) | ||
exclude(:test_command_line_progname_nonascii, reason) | ||
end |