hi, Successfully ported jruby to OS390 which is the EBCDIC land, It stopped when running test case test/testUTF8Regex.rb. I found the root reason is the 'rindex'. If I commented all the 'rindex' tests out, the test/testUTF8Regex.rb would be ok, or it would always be running and never stop. Also if I removed the option 'u' , like: test_equal(6, "スパムハンク".rindex(/ム./u)) to test_equal(6, "スパムハンク".rindex(/ム./)) , this test case would be ok too.
I don't know why this test case was suspended. I know this test case is ok on linux. Could you tell me the reason or give me any comments about this question? Thanks for any help in advance!
