php-src/ext/mbstring/libmbfl/tests/conv_encoding.tests/cp51932_cp50220raw.exp
2008-07-05 06:52:04 +00:00

34 lines
769 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/usr/bin/expect -f
spawn tests/conv_encoding Japanese CP50220raw eucJP-win
set timeout 1
expect_after {
"\[^\r\n\]*\r\n" { fail $test }
}
set test "81 - 87ku"
send "\xf5\xba\xf6\xec\xf7\xc9\xf8\xb3\xf9\xa1\xfa\xa1\xfb\xa1\r"
expect {
"%1b%24%42%75%3a%76%6c%77%49%78%33%79%21%7a%21%7b%21%1b%28%42 (20)\r\n" { pass $test }
}
set test "kanji + kana"
send "日本語テスト\r"
expect {
"%1b%24%42%46%7c%4b%5c%38%6c%25%46%25%39%25%48%1b%28%42 (18)\r\n" { pass $test }
}
set test "full-width numerics"
send "\r"
expect {
"%1b%24%42%23%30%23%31%23%32%23%33%23%34%23%35%23%36%23%37%23%38%23%39%1b%28%42 (26)\r\n" { pass $test }
}
set test "full-width numerics"
send "㍊"
expect {
"%1b%24%42%2d%42%1b%28%42 (8)\r\n" { pass $test }
}