summaryrefslogtreecommitdiff
path: root/ext/standard/tests/file/chgrp.phpt
blob: 9c85f5c835f46823473be4e3716d1575f4832516 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
--TEST--
chgrp() with NULL as group name
--SKIPIF--
<?php
if(substr(PHP_OS, 0, 3) == "WIN")
  die("skip, not supported on Windows");
?>
--FILE--
<?php
chgrp("sjhgfskhagkfdgskjfhgskfsdgfkdsajf", NULL);
echo "ALIVE\n";
?>
--EXPECTF--
Warning: chgrp(): parameter 2 should be string or integer, null given in %schgrp.php on line 2
ALIVE