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".
0d42217123
/
Provisionally exclude tests that fail by passing such characters.
This commit is contained in:
parent
e7518a7859
commit
09874e90bf
Notes:
git
2024-11-04 12:51:37 +00:00
9
test/.excludes/TestArgf.rb
Normal file
9
test/.excludes/TestArgf.rb
Normal file
@ -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
|
11
test/.excludes/TestRubyOptions.rb
Normal file
11
test/.excludes/TestRubyOptions.rb
Normal file
@ -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
|
Loading…
x
Reference in New Issue
Block a user