]> granicus.if.org Git - php/commitdiff
fix skip reasons. the word 'skip' should be followed by a single space and doesnt...
authorNuno Lopes <nlopess@php.net>
Thu, 13 Sep 2007 18:24:26 +0000 (18:24 +0000)
committerNuno Lopes <nlopess@php.net>
Thu, 13 Sep 2007 18:24:26 +0000 (18:24 +0000)
22 files changed:
ext/standard/tests/file/006_basic.phpt
ext/standard/tests/file/006_error.phpt
ext/standard/tests/file/006_variation1.phpt
ext/standard/tests/file/006_variation2.phpt
ext/standard/tests/file/copy_variation15.phpt
ext/standard/tests/file/copy_variation9.phpt
ext/standard/tests/file/is_executable_basic.phpt
ext/standard/tests/file/is_executable_variation1.phpt
ext/standard/tests/file/is_executable_variation2.phpt
ext/standard/tests/file/is_executable_variation3.phpt
ext/standard/tests/file/is_readable_basic.phpt
ext/standard/tests/file/is_readable_variation1.phpt
ext/standard/tests/file/is_readable_variation2.phpt
ext/standard/tests/file/is_readable_variation3.phpt
ext/standard/tests/file/is_writable_basic.phpt
ext/standard/tests/file/is_writable_variation1.phpt
ext/standard/tests/file/is_writable_variation2.phpt
ext/standard/tests/file/is_writable_variation3.phpt
ext/standard/tests/file/mkdir_rmdir_variation1.phpt
ext/standard/tests/file/mkdir_rmdir_variation2.phpt
ext/standard/tests/file/symlink_link_linkinfo_is_link_variation6.phpt
ext/standard/tests/file/unlink_variation1.phpt

index b4eee97d374665423caaee9ea88489da87cbe335..213442c15f935ddc9050c01a178742e6b10190f9 100644 (file)
@@ -11,7 +11,7 @@ $fp = fopen($filename, 'w');
 fclose($fp);
 if(fileowner($filename) == 0) {
         unlink ($filename);
-        die('skip...cannot be run as root\n');
+        die('skip cannot be run as root');
 }
 
 unlink($filename);
index 691e76eae0289ce469dac675d39b961ad10630da..b814e5b697d24fc016d77152ce726345256098c8 100644 (file)
@@ -11,7 +11,7 @@ $fp = fopen($filename, 'w');
 fclose($fp);
 if(fileowner($filename) == 0) {
         unlink ($filename);
-        die('skip...cannot be run as root\n');
+        die('skip cannot be run as root');
 }
 
 unlink($filename);
index 5162181bf7e5e8a9e67fa9e16a8c1f533b253448..b752d21feabb18bd7181f13bf4578ca239281f71 100644 (file)
@@ -11,7 +11,7 @@ $fp = fopen($filename, 'w');
 fclose($fp);
 if(fileowner($filename) == 0) {
         unlink ($filename);
-        die('skip...cannot be run as root\n');
+        die('skip cannot be run as root');
 }
 
 unlink($filename);
index e224be2b1fbb20a201825b72e7b2b94899dc79b9..348e9b869ef5e73871d0ad5782fc86f707330545 100644 (file)
@@ -11,7 +11,7 @@ $fp = fopen($filename, 'w');
 fclose($fp);
 if(fileowner($filename) == 0) {
         unlink ($filename);
-        die('skip...cannot be run as root\n');
+        die('skip cannot be run as root');
 }
 
 unlink($filename);
index 315a1a3fc9ce11b59f23b7387704cfa53db85b07..d5b7a4b8be98a8013202ee1a46e763e26935c32c 100644 (file)
@@ -10,7 +10,7 @@ $fp = fopen($filename, 'w');
 fclose($fp);
 if(fileowner($filename) == 0) {
         unlink ($filename);
-        die('skip...cannot be run as root\n');
+        die('skip cannot be run as root');
 }
 unlink($filename);
 ?>
index e26c6e3babc9f63e865f4951f49214e3524c9199..8f9c2e921e5e923954dfd7550b2550e45d7ccbb2 100644 (file)
@@ -11,7 +11,7 @@ $fp = fopen($filename, 'w');
 fclose($fp);
 if(fileowner($filename) == 0) {
         unlink ($filename);
-        die('skip...cannot be run as root\n');
+        die('skip cannot be run as root');
 }
 unlink($filename);
 ?>
index 895f16e1e0991a75d030e85e53579ae6e41b66e4..730ffc9fc3c71c18f91c3a84d68a4cb75df81e95 100644 (file)
@@ -3,7 +3,7 @@ Test is_executable() function: basic functionality
 --SKIPIF--
 <?php
 if (substr(PHP_OS, 0, 3) == 'WIN') {
-    die('skip.. only for LINUX');
+    die('skip not for windows');
 }
 
 // Skip if being run by root (files are always readable, writeable and executable)
@@ -12,7 +12,7 @@ $fp = fopen($filename, 'w');
 fclose($fp);
 if(fileowner($filename) == 0) {
        unlink ($filename);
-       die('skip...cannot be run as root\n');
+       die('skip cannot be run as root');
 }
 
 unlink($filename);
index d96599d3b8858da0b5b72a7cac1c2549efa38baa..f172f503ced2d1e34813bee09372ae48cd5811ed 100644 (file)
@@ -3,7 +3,7 @@ Test is_executable() function: usage variations - diff. path notations
 --SKIPIF--
 <?php
 if (substr(PHP_OS, 0, 3) == 'WIN') {
-    die('skip.. only for LINUX');
+    die('skip not for windows');
 }
 // Skip if being run by root (files are always readable, writeable and executable)
 $filename = dirname(__FILE__)."/is_executable_root_check.tmp";
@@ -11,7 +11,7 @@ $fp = fopen($filename, 'w');
 fclose($fp);
 if(fileowner($filename) == 0) {
         unlink ($filename);
-        die('skip...cannot be run as root\n');
+        die('skip cannot be run as root');
 }
 
 unlink($filename);
index e5fac05123779c063376d2e601892126b80e3196..cc7439b06acc4b95ddf89818747a06a9e6e85fde 100644 (file)
@@ -3,7 +3,7 @@ Test is_executable() function: usage variations - file/dir with diff. perms
 --SKIPIF--
 <?php
 if (substr(PHP_OS, 0, 3) == 'WIN') {
-    die('skip.. only for LINUX');
+    die('skip not for windows');
 }
 // Skip if being run by root (files are always readable, writeable and executable)
 $filename = dirname(__FILE__)."/is_executable_root_check.tmp";
@@ -11,7 +11,7 @@ $fp = fopen($filename, 'w');
 fclose($fp);
 if(fileowner($filename) == 0) {
         unlink ($filename);
-        die('skip...cannot be run as root\n');
+        die('skip cannot be run as root');
 }
 
 unlink($filename);
index 03ae37b252e26455b6134a363bd9ce9d40bdacdd..777599cbf9d646a554e354c0e9ec6f9ff88a614c 100644 (file)
@@ -3,7 +3,7 @@ Test is_executable() function: usage variations - invalid file names
 --SKIPIF--
 <?php
 if (substr(PHP_OS, 0, 3) == 'WIN') {
-    die('skip.. only for LINUX');
+    die('skip not for windows');
 }
 // Skip if being run by root (files are always readable, writeable and executable)
 $filename = dirname(__FILE__)."/is_executable_root_check.tmp";
@@ -11,7 +11,7 @@ $fp = fopen($filename, 'w');
 fclose($fp);
 if(fileowner($filename) == 0) {
         unlink ($filename);
-        die('skip...cannot be run as root\n');
+        die('skip cannot be run as root');
 }
 
 unlink($filename);
index f656f3d16d4ce40a0153a7f99b88dbdc4c565cba..4d5febfb3d5ff56d4158ba2092d62a5feda0633e 100644 (file)
@@ -3,7 +3,7 @@ Test is_readable() function: basic functionality
 --SKIPIF--
 <?php
 if (substr(PHP_OS, 0, 3) == 'WIN') {
-    die('skip.. only for LINUX');
+    die('skip not for windows');
 }
 // Skip if being run by root (files are always readable, writeable and executable)
 $filename = dirname(__FILE__)."/is_readable_root_check.tmp";
@@ -11,7 +11,7 @@ $fp = fopen($filename, 'w');
 fclose($fp);
 if(fileowner($filename) == 0) {
        unlink ($filename);
-       die('skip...cannot be run as root\n');
+       die('skip cannot be run as root');
 }
 
 unlink($filename);
index 14cfb586025d297f910105c40dbc96c057c419c5..2ab1e3d679d9fe642c04203113c570ef76c7d4ed 100644 (file)
@@ -3,7 +3,7 @@ Test is_readable() function: usage variations - diff. file notations
 --SKIPIF--
 <?php
 if (substr(PHP_OS, 0, 3) == 'WIN') {
-    die('skip.. only for LINUX');
+    die('skip not for windows');
 }
 // Skip if being run by root (files are always readable, writeable and executable)
 $filename = dirname(__FILE__)."/is_readable_root_check.tmp";
@@ -11,7 +11,7 @@ $fp = fopen($filename, 'w');
 fclose($fp);
 if(fileowner($filename) == 0) {
         unlink ($filename);
-        die('skip...cannot be run as root\n');
+        die('skip cannot be run as root');
 }
 
 unlink($filename);
index a11f783403ca2c6d292e66e75aeb69be64d7eb23..0a3e4f7da01e7a13d385a512cc9c033060de4adc 100644 (file)
@@ -3,7 +3,7 @@ Test is_readable() function: usage variations - file/dir with diff. perms
 --SKIPIF--
 <?php
 if (substr(PHP_OS, 0, 3) == 'WIN') {
-    die('skip.. only for LINUX');
+    die('skip not for windows');
 }
 // Skip if being run by root (files are always readable, writeable and executable)
 $filename = dirname(__FILE__)."/is_readable_root_check.tmp";
@@ -11,7 +11,7 @@ $fp = fopen($filename, 'w');
 fclose($fp);
 if(fileowner($filename) == 0) {
         unlink ($filename);
-        die('skip...cannot be run as root\n');
+        die('skip cannot be run as root');
 }
 
 unlink($filename);
index 9e1e4bdb208899f694d806ce52690e8e20f3fce5..e42839ed9d9ccd9c96396661a3441915fe61b168 100644 (file)
@@ -3,7 +3,7 @@ Test is_readable() function: usage variations - invalid file names
 --SKIPIF--
 <?php
 if (substr(PHP_OS, 0, 3) == 'WIN') {
-    die('skip.. only for LINUX');
+    die('skip not for windows');
 }
 // Skip if being run by root (files are always readable, writeable and executable)
 $filename = dirname(__FILE__)."/is_readable_root_check.tmp";
@@ -11,7 +11,7 @@ $fp = fopen($filename, 'w');
 fclose($fp);
 if(fileowner($filename) == 0) {
         unlink ($filename);
-        die('skip...cannot be run as root\n');
+        die('skip cannot be run as root');
 }
 
 unlink($filename);
index 27d14dd07036f7e7414be2a334f49f960b907576..86599b473bd0ad8c8e6ba5ed0f4efe662411b91c 100644 (file)
@@ -8,7 +8,7 @@ $fp = fopen($filename, 'w');
 fclose($fp);
 if(fileowner($filename) == 0) {
        unlink ($filename);
-       die('skip...cannot be run as root\n');
+       die('skip cannot be run as root');
 }
 
 unlink($filename);
index c2a57774e5bea184e1d5f33ff718f345c442a21e..2d0da9b1862a00f08980e040567434fa44f765ba 100644 (file)
@@ -11,7 +11,7 @@ $fp = fopen($filename, 'w');
 fclose($fp);
 if(fileowner($filename) == 0) {
         unlink ($filename);
-        die('skip...cannot be run as root\n');
+        die('skip cannot be run as root');
 }
 
 unlink($filename);
index dffac8996739473383b88daf083bdce99a02cf5c..40f93b38a2250a2cd59345233fefc394d2c31326 100644 (file)
@@ -11,7 +11,7 @@ $fp = fopen($filename, 'w');
 fclose($fp);
 if(fileowner($filename) == 0) {
         unlink ($filename);
-        die('skip...cannot be run as root\n');
+        die('skip cannot be run as root');
 }
 
 unlink($filename);
index ab2c8e3f3fb53570e781a639967e97b7d4101164..69de6046d59c1dff36ea17b45af676fab97f130d 100644 (file)
@@ -11,7 +11,7 @@ $fp = fopen($filename, 'w');
 fclose($fp);
 if(fileowner($filename) == 0) {
         unlink ($filename);
-        die('skip...cannot be run as root\n');
+        die('skip cannot be run as root');
 }
 
 unlink($filename);
index 4aae722144b06227ff57d33f812fc3510e9166cd..5dc7a7a4d36e63352b854fd444d633814e8d531d 100644 (file)
@@ -11,7 +11,7 @@ $fp = fopen($filename, 'w');
 fclose($fp);
 if(fileowner($filename) == 0) {
        unlink ($filename);
-       die('skip...cannot be run as root\n');
+       die('skip cannot be run as root');
 }
 
 unlink($filename);
index 1bbb60ab73e3175ee22bd793c297509ed49ebbb0..d09fa58711f56a70ac73ac8c416e09a59d6f69af 100644 (file)
@@ -11,7 +11,7 @@ $fp = fopen($filename, 'w');
 fclose($fp);
 if(fileowner($filename) == 0) {
        unlink ($filename);
-       die('skip...cannot be run as root\n');
+       die('skip cannot be run as root');
 }
 
 unlink($filename);
index 24facf4b21ae7b514be4ffd27d433aa02b9ea9ad..4cf566ca1978d22447f58620271d6b842cd4a12a 100644 (file)
@@ -18,7 +18,7 @@ $fp = fopen($filename, 'w');
 fclose($fp);
 if(fileowner($filename) == 0) {
         unlink ($filename);
-        die('skip...cannot be run as root\n');
+        die('skip cannot be run as root');
 }
 
 unlink($filename);
index 4046be88207607555c1596f56850501c15567d6e..c8a5675424ce5ac865943565b7820c58ce8c15ce 100644 (file)
@@ -11,7 +11,7 @@ $fp = fopen($filename, 'w');
 fclose($fp);
 if(fileowner($filename) == 0) {
         unlink ($filename);
-        die('skip...cannot be run as root\n');
+        die('skip cannot be run as root');
 }
 
 unlink($filename);