diff options
author | Ulf Wendel <uw@php.net> | 2009-05-28 14:11:41 +0000 |
---|---|---|
committer | Ulf Wendel <uw@php.net> | 2009-05-28 14:11:41 +0000 |
commit | 85cb084fc5a5ecf06fb187ce25c632e05710cc24 (patch) | |
tree | 407c8f0b9af0ffd179ebea8bd943a30565868789 /ext/mysqli/tests/skipifunicode.inc | |
parent | ff1535fe73f498033a521ef96e1d2cbca9586b02 (diff) | |
download | php-git-85cb084fc5a5ecf06fb187ce25c632e05710cc24.tar.gz |
1) Changing EXPECT[F] sections to work with PHP 5.3 and PHP 6. 2) Merging a couple of fixes I applied to PHP 5.3 only yesterday. The changes should make it a little easier to do MFH and follow the rules in the future as we will soon have identical tests for PHP 5_3 and HEAD.
Diffstat (limited to 'ext/mysqli/tests/skipifunicode.inc')
-rw-r--r-- | ext/mysqli/tests/skipifunicode.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/mysqli/tests/skipifunicode.inc b/ext/mysqli/tests/skipifunicode.inc index 23cd79d460..da4dd8e6fd 100644 --- a/ext/mysqli/tests/skipifunicode.inc +++ b/ext/mysqli/tests/skipifunicode.inc @@ -1,5 +1,5 @@ <?php -if (ini_get("unicode.semantics")){ - die('skip Test doesn't work in Unicode mode'); +if (version_compare(PHP_VERSION, '5.9.9', '>') == 1) { + die('skip Not functional with PHP 6 (fomerly PHP 6 && unicode.semantics=On)'); } ?> |