I grepped for php_printf cases in main/ and sapi/ and converted the cases which clearly indicate errors to fprintf(stderr, ...), like suggested in the linked issue. Closes GH-11163.
60 lines
812 B
PHP
60 lines
812 B
PHP
--TEST--
|
|
syntax check
|
|
--SKIPIF--
|
|
<?php include "skipif.inc"; ?>
|
|
--FILE--
|
|
<?php
|
|
|
|
$php = getenv('TEST_PHP_EXECUTABLE_ESCAPED');
|
|
|
|
$filename = __DIR__."/011.test.php";
|
|
$filename_escaped = escapeshellarg($filename);
|
|
|
|
$code = '
|
|
<?php
|
|
|
|
$test = "var";
|
|
|
|
class test {
|
|
private $var;
|
|
}
|
|
|
|
echo test::$var;
|
|
|
|
?>
|
|
';
|
|
|
|
file_put_contents($filename, $code);
|
|
|
|
var_dump(`$php -n -l $filename_escaped`);
|
|
var_dump(`$php -n -l some.unknown`);
|
|
|
|
$code = '
|
|
<?php
|
|
|
|
class test
|
|
private $var;
|
|
}
|
|
|
|
?>
|
|
';
|
|
|
|
file_put_contents($filename, $code);
|
|
|
|
var_dump(`$php -n -l $filename_escaped`);
|
|
|
|
@unlink($filename);
|
|
|
|
echo "Done\n";
|
|
?>
|
|
--EXPECTF--
|
|
string(%d) "No syntax errors detected in %s011.test.php
|
|
"
|
|
Could not open input file: some.unknown
|
|
NULL
|
|
string(%d) "
|
|
Parse error: %s expecting %s{%s in %s on line %d
|
|
Errors parsing %s011.test.php
|
|
"
|
|
Done
|