8000 Skip test_raise_exception_with_invalid_byte_sequence · ruby/irb@ecf5a1a · GitHub
[go: up one dir, main page]

Skip to content

Commit ecf5a1a

Browse files
committed
Skip test_raise_exception_with_invalid_byte_sequence
on Windows for now. It seems like we haven't figured this out yet.
1 parent 0816d14 commit ecf5a1a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/irb/test_raise_no_backtrace_exception.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ def e.backtrace; nil; end
1515
end
1616

1717
def test_raise_exception_with_invalid_byte_sequence
18-
skip if RUBY_ENGINE == 'truffleruby'
18+
skip if RUBY_ENGINE == 'truffleruby' || /mswin|mingw/ =~ RUBY_PLATFORM
1919
bundle_exec = ENV.key?('BUNDLE_GEMFILE') ? ['-rbundler/setup'] : []
20-
assert_in_out_err(bundle_exec + %w[-rirb -W0 -e IRB.start(__FILE__) -- -f --], <<~IRB, /A\\xF3B \(StandardError\)/, [], encoding: "UTF-8")
20+
assert_in_out_err(bundle_exec + %w[-rirb -W0 -e IRB.start(__FILE__) -- -f --], <<~IRB, /A\\xF3B \(StandardError\)/, [])
2121
raise StandardError, "A\\xf3B"
2222
IRB
2323
end

0 commit comments

Comments
 (0)
0