php-src/sapi/cli/tests/004.phpt
Antony Dovgal 29c4f0590c fix tests
I was absolutely sure we removed --disable-reflection option.
2007-03-17 19:15:58 +00:00

35 lines
586 B
PHP

--TEST--
show information about function
--SKIPIF--
<?php
include "skipif.inc";
if (!extension_loaded("reflection")) {
die("skip");
}
?>
--FILE--
<?php
$php = getenv('TEST_PHP_EXECUTABLE');
var_dump(`"$php" -n --rf unknown`);
var_dump(`"$php" -n --rf echo`);
var_dump(`"$php" -n --rf phpinfo`);
echo "Done\n";
?>
--EXPECTF--
string(45) "Exception: Function unknown() does not exist
"
string(42) "Exception: Function echo() does not exist
"
string(119) "Function [ <internal:standard> function phpinfo ] {
- Parameters [1] {
Parameter #0 [ <optional> $what ]
}
}
"
Done