diff options
author | Zeev Suraski <zeev@php.net> | 2004-02-25 14:57:43 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 2004-02-25 14:57:43 +0000 |
commit | 982b44e0732a0bd7ba8dfe3dd53585a2fc6c48d3 (patch) | |
tree | 396a90096264e92b9ab16d1e8a1a951fa5fba517 /tests | |
parent | 7086634a0bcb48d47ad34ca36c188f379d367924 (diff) | |
download | php-git-982b44e0732a0bd7ba8dfe3dd53585a2fc6c48d3.tar.gz |
This is no longer valid out of the box PHP 5 code.
We tried to enable compatibility mode but the test engine doesn't appear
to take the --INI-- section into account in compile time, so it didn't
work...
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lang/bug22367.phpt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/lang/bug22367.phpt b/tests/lang/bug22367.phpt index d97ad7cef3..134af99d04 100644 --- a/tests/lang/bug22367.phpt +++ b/tests/lang/bug22367.phpt @@ -1,7 +1,10 @@ --TEST-- Bug #22367 (weird zval allocation problem) +--SKIPIF-- +<?php if(version_compare(zend_version(), "2.0.0-dev", '>=')) echo "skip Overriden method does not match overriding method - incompatible with ZE2\n"; ?> --FILE-- <?php + class foo { public $test = array(0, 1, 2, 3, 4); |