]> granicus.if.org Git - php/commitdiff
Updated test. touch() emits E_WARNING for bogus values. Updated 5.3 test to look...
authorPhilip Olson <philip@php.net>
Tue, 24 May 2011 23:27:49 +0000 (23:27 +0000)
committerPhilip Olson <philip@php.net>
Tue, 24 May 2011 23:27:49 +0000 (23:27 +0000)
ext/standard/tests/file/005_variation2.phpt

index 51919dba60e49765750a55517f47cec7870abc08..d14a9bddd78ed13be32102a0d15c61cd9bc6a435 100644 (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);
@@ -71,6 +77,12 @@ echo "Done";
 *** Testing fileattime(), filemtime(), filectime() & touch() : usage variations ***
 
 *** testing touch ***
+
+Warning: touch(): Unable to create file  because No such file or directory in %s on line %d
+
+Warning: touch(): Unable to create file  because No such file or directory 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)