php-src/ext/zend_test/tests/observer_retval_01.phpt
Nikita Popov dbe5725ff3 Rename zend-test to zend_test
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.
2021-01-19 15:28:15 +01:00

31 lines
701 B
PHP

--TEST--
Observer: Retvals are observable that are: IS_CONST
--SKIPIF--
<?php if (!extension_loaded('zend_test')) die('skip: zend_test extension required'); ?>
--INI--
zend_test.observer.enabled=1
zend_test.observer.observe_all=1
zend_test.observer.show_return_value=1
opcache.optimization_level=0
--FILE--
<?php
function foo() {
return 'I should be observable'; // IS_CONST
}
$res = foo(); // Retval used
foo(); // Retval unused
echo 'Done' . PHP_EOL;
?>
--EXPECTF--
<!-- init '%s%eobserver_retval_%d.php' -->
<file '%s%eobserver_retval_%d.php'>
<!-- init foo() -->
<foo>
</foo:'I should be observable'>
<foo>
</foo:'I should be observable'>
Done
</file '%s%eobserver_retval_%d.php'>