summaryrefslogtreecommitdiff
path: root/ext/standard/tests/file/lchown_basic.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/standard/tests/file/lchown_basic.phpt')
-rw-r--r--ext/standard/tests/file/lchown_basic.phpt8
1 files changed, 0 insertions, 8 deletions
diff --git a/ext/standard/tests/file/lchown_basic.phpt b/ext/standard/tests/file/lchown_basic.phpt
index e38bbda1be..189ccb6fe8 100644
--- a/ext/standard/tests/file/lchown_basic.phpt
+++ b/ext/standard/tests/file/lchown_basic.phpt
@@ -7,12 +7,6 @@ if (!function_exists("posix_getuid")) die("skip no posix_getuid()");
?>
--FILE--
<?php
-/* Prototype : bool lchown (string filename, mixed user)
- * Description: Change file owner of a symlink
- * Source code: ext/standard/filestat.c
- * Alias to functions:
- */
-
echo "*** Testing lchown() : basic functionality ***\n";
$filename = __DIR__ . DIRECTORY_SEPARATOR . 'lchown_basic.txt';
$symlink = __DIR__ . DIRECTORY_SEPARATOR . 'lchown_basic_symlink.txt';
@@ -25,7 +19,6 @@ var_dump( lchown( $filename, $uid ) );
var_dump( fileowner( $symlink ) === $uid );
?>
-===DONE===
--CLEAN--
<?php
@@ -41,4 +34,3 @@ bool(true)
bool(true)
bool(true)
bool(true)
-===DONE===