summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bootstraptest/test_knownbug.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/bootstraptest/test_knownbug.rb b/bootstraptest/test_knownbug.rb
index ae72e35b88..1eaff72f7c 100644
--- a/bootstraptest/test_knownbug.rb
+++ b/bootstraptest/test_knownbug.rb
@@ -34,3 +34,16 @@ assert_equal 'ok', %q{
result
end
}
+
+assert_equal 'ok', %q{
+ begin
+ if ("\xa1\xa2\xa1\xa3").force_encoding("euc-jp").split(//) ==
+ ["\xa1\xa2".force_encoding("euc-jp"), "\xa1\xa3".force_encoding("euc-jp")]
+ :ok
+ else
+ :ng
+ end
+ rescue
+ :ng
+ end
+}, '[ruby-dev:32452]'