diff options
author | Moriyoshi Koizumi <moriyoshi@php.net> | 2003-09-26 11:08:54 +0000 |
---|---|---|
committer | Moriyoshi Koizumi <moriyoshi@php.net> | 2003-09-26 11:08:54 +0000 |
commit | 96cdea35c10ef7a5877aa883ed951ceab91085e2 (patch) | |
tree | 27012b58e859480562b557b9384b695673badc06 | |
parent | c40234b47e9197dc098dd8df537a198f8d924734 (diff) | |
download | php-git-96cdea35c10ef7a5877aa883ed951ceab91085e2.tar.gz |
Specify full path to cat for mb_send_mail() tests
-rw-r--r-- | ext/mbstring/tests/mb_send_mail01.phpt | 2 | ||||
-rw-r--r-- | ext/mbstring/tests/mb_send_mail05.phpt | 2 | ||||
-rw-r--r-- | ext/mbstring/tests/mb_send_mail06.phpt | 2 | ||||
-rw-r--r-- | ext/mbstring/tests/mb_send_mail07.phpt | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/ext/mbstring/tests/mb_send_mail01.phpt b/ext/mbstring/tests/mb_send_mail01.phpt index af70a8e23d..bc481fbba0 100644 --- a/ext/mbstring/tests/mb_send_mail01.phpt +++ b/ext/mbstring/tests/mb_send_mail01.phpt @@ -7,7 +7,7 @@ if (@mb_send_mail() === false || !mb_language("neutral")) { } ?> --INI-- -sendmail_path=/usr/cat +sendmail_path=/bin/cat --FILE-- <?php $to = 'example@example.com'; diff --git a/ext/mbstring/tests/mb_send_mail05.phpt b/ext/mbstring/tests/mb_send_mail05.phpt index 37bbe33a69..7d1dc981d2 100644 --- a/ext/mbstring/tests/mb_send_mail05.phpt +++ b/ext/mbstring/tests/mb_send_mail05.phpt @@ -10,7 +10,7 @@ if (!@mb_internal_encoding('GB2312')) { } ?> --INI-- -sendmail_path=cat +sendmail_path=/bin/cat --FILE-- <?php $to = 'example@example.com'; diff --git a/ext/mbstring/tests/mb_send_mail06.phpt b/ext/mbstring/tests/mb_send_mail06.phpt index 20a42d79b7..92087f9649 100644 --- a/ext/mbstring/tests/mb_send_mail06.phpt +++ b/ext/mbstring/tests/mb_send_mail06.phpt @@ -10,7 +10,7 @@ if (!@mb_internal_encoding('BIG5')) { } ?> --INI-- -sendmail_path=cat +sendmail_path=/bin/cat --FILE-- <?php $to = 'example@example.com'; diff --git a/ext/mbstring/tests/mb_send_mail07.phpt b/ext/mbstring/tests/mb_send_mail07.phpt index 8f53c0b97b..ae429f3ced 100644 --- a/ext/mbstring/tests/mb_send_mail07.phpt +++ b/ext/mbstring/tests/mb_send_mail07.phpt @@ -10,7 +10,7 @@ if (!@mb_internal_encoding('ISO-2022-KR')) { } ?> --INI-- -sendmail_path=cat +sendmail_path=/bin/cat --FILE-- <?php $to = 'example@example.com'; |