--TEST--
Test filegroup() function: usage variations - links
--CREDITS--
Dave Kelsey <d_kelsey@uk.ibm.com>
--SKIPIF--
<?php
if (substr(PHP_OS03) == 'WIN') {
    die(
'skip Do not run on Windows');
}
--
FILE--
<?
php
/* Prototype: int filegroup ( string $filename )
 * Description: Returns the group ID of the file, or FALSE in case of an error.
 */

/* Creating soft and hard links to a file and applying filegroup() on links */ 

$file_path dirname(__FILE__);
fclosefopen($file_path."/filegroup_variation1.tmp""w") );

echo 
"*** Testing filegroup() with links ***\n";
/* With symlink */
symlink($file_path."/filegroup_variation1.tmp"$file_path."/filegroup_variation1_symlink.tmp");
var_dumpfilegroup($file_path."/filegroup_variation1_symlink.tmp") ); //expected true
clearstatcache();

/* With hardlink */
link($file_path."/filegroup_variation1.tmp"$file_path."/filegroup_variation1_link.tmp");
var_dumpfilegroup($file_path."/filegroup_variation1_link.tmp") );  // expected: true
clearstatcache();

echo 
"\n*** Done ***";
?>
--CLEAN--
<?php
$file_path 
dirname(__FILE__);
unlink($file_path."/filegroup_variation1_symlink.tmp");
unlink($file_path."/filegroup_variation1_link.tmp");
unlink($file_path."/filegroup_variation1.tmp");
?>

--EXPECTF--
*** Testing filegroup() with links ***
int(%d)
int(%d)

*** Done ***