mirror of
https://github.com/php/php-src.git
synced 2026-04-24 08:28:26 +02:00
dbe5725ff3
The extension name should match the name of the ext/ directory, otherwise it will not get picked up by run-tests. It would be possible to remap this in run-tests, but I think it's better to rename the extension to follow the standard format. Other extensions also use underscore instead of hyphen (e.g. pdo_mysql and not pdo-mysql). Of course, the ./configure option remains hyphenated. Closes GH-6613.
16 lines
284 B
PHP
16 lines
284 B
PHP
--TEST--
|
|
Overloaded function 001
|
|
--SKIPIF--
|
|
<?php
|
|
if (!extension_loaded('zend_test')) die('skip zend_test extension not loaded');
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
$o = new _ZendTestChildClass();
|
|
var_dump($o->test());
|
|
var_dump(_ZendTestClass::test());
|
|
?>
|
|
--EXPECT--
|
|
string(4) "test"
|
|
string(4) "test"
|