1
0
mirror of https://github.com/php/php-src.git synced 2026-04-25 00:48:25 +02:00

Updated test. touch() emits E_WARNING for bogus values. Updated 5.3 test to look the same.

This commit is contained in:
Philip Olson
2011-05-24 23:27:49 +00:00
parent 6814cbec4b
commit e2caad5f96
+16 -10
View File
@@ -49,11 +49,17 @@ function stat_fn( $filename ) {
echo "*** Testing fileattime(), filemtime(), filectime() & touch() : usage variations ***\n";
echo "\n*** testing touch ***\n";
var_dump(touch(NULL));
var_dump(touch(false));
var_dump(touch(''));
var_dump(touch(' '));
var_dump(touch('|'));
$a = touch(NULL);
$b = touch(false);
$c = touch('');
$d = touch(' ');
$e = touch('|');
var_dump($a);
var_dump($b);
var_dump($c);
var_dump($d);
var_dump($e);
echo "\n*** testing file info ***";
stat_fn(NULL);
@@ -72,13 +78,13 @@ echo "Done";
*** testing touch ***
Warning: touch(): Unable to create file because %s in %s on line %d
bool(false)
Warning: touch(): Unable to create file because No such file or directory in %s on line %d
Warning: touch(): Unable to create file because %s in %s on line %d
bool(false)
Warning: touch(): Unable to create file because No such file or directory in %s on line %d
Warning: touch(): Unable to create file because %s in %s on line %d
Warning: touch(): Unable to create file because No such file or directory in %s on line %d
bool(false)
bool(false)
bool(false)
bool(true)
bool(true)