From 37f9d089ed30477e1f7d8c54fde6047e7c1d3154 Mon Sep 17 00:00:00 2001 From: akr Date: Fri, 28 Sep 2007 06:34:13 +0000 Subject: check codepage for SJIS pathname test. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13544 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/pathname/test_pathname.rb | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/test/pathname/test_pathname.rb b/test/pathname/test_pathname.rb index 21a3ba68ac..206a0eb108 100644 --- a/test/pathname/test_pathname.rb +++ b/test/pathname/test_pathname.rb @@ -174,7 +174,10 @@ class TestPathname < Test::Unit::TestCase if DOSISH defassert(:del_trailing_separator, "a", "a\\") - defassert(:del_trailing_separator, "\225\\", "\225\\\\") # SJIS + require 'Win32API' + if Win32API.new('kernel32', 'GetACP', nil, 'L').call == 932 + defassert(:del_trailing_separator, "\225\\", "\225\\\\") # SJIS + end end def plus(path1, path2) # -> path -- cgit v1.2.3