????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 216.73.216.238 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/self/root/home/b8009/php-5.6.22/ext/mbstring/libmbfl/tests/conv_encoding.tests/ |
Upload File : |
#!/usr/bin/expect -f set timeout 1 spawn tests/conv_encoding Japanese CP932 UTF-8 expect_after { "\[^\r\n\]*\r\n" { fail $test } } set test "CP932" send "\xc2\xa5\r" sleep 0.01 expect { "%5c (1)\r\n" { pass $test } } close spawn tests/conv_encoding Japanese SJIS-open UTF-8 expect_after { "\[^\r\n\]*\r\n" { fail $test } } set test "SJIS-open" send "\xc2\xa5\r" sleep 0.01 expect { "%81%8f (2)\r\n" { pass $test } } close spawn tests/conv_encoding Japanese eucJP-open UTF-8 expect_after { "\[^\r\n\]*\r\n" { fail $test } } set test "eucJP-open" send "\xc2\xa5\r" sleep 0.01 expect { "%a1%ef (2)\r\n" { pass $test } } close spawn tests/conv_encoding Japanese CP51932 UTF-8 expect_after { "\[^\r\n\]*\r\n" { fail $test } } set test "CP51932" send "\xc2\xa5\r" sleep 0.01 expect { "%5c (1)\r\n" { pass $test } } close spawn tests/conv_encoding Japanese ISO-2022-JP-MS UTF-8 expect_after { "\[^\r\n\]*\r\n" { fail $test } } set test "ISO-2022-JP-MS" send "\xc2\xa5\r" sleep 0.01 expect { "%1b%24%42%21%6f%1b%28%42 (8)\r\n" { pass $test } } close spawn tests/conv_encoding Japanese CP50220 UTF-8 expect_after { "\[^\r\n\]*\r\n" { fail $test } } set test "CP50220" send "\xc2\xa5\r" sleep 0.01 expect { "%1b%28%4a%5c%1b%28%42 (7)\r\n" { pass $test } } close spawn tests/conv_encoding Japanese CP50221 UTF-8 expect_after { "\[^\r\n\]*\r\n" { fail $test } } set test "CP50221" send "\xc2\xa5\r" sleep 0.01 expect { "%1b%28%4a%5c%1b%28%42 (7)\r\n" { pass $test } } close spawn tests/conv_encoding Japanese CP50222 UTF-8 expect_after { "\[^\r\n\]*\r\n" { fail $test } } set test "CP50222" send "\xc2\xa5\r" sleep 0.01 expect { "%1b%28%4a%5c%1b%28%42 (7)\r\n" { pass $test } } close # vim: sts=4 ts=4 sw=4 et