summaryrefslogtreecommitdiff
path: root/ext/standard/tests/file/chgrp.phpt
blob: 1e4899e4657426ae0e5163f346faded2c6e9e574 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
--TEST--
chgrp() with NULL as group name
--SKIPIF--
<?php
if(substr(PHP_OS, 0, 3) == "WIN")
  die("skip, not supported on Windows");
?>
--FILE--
<?php
try {
    chgrp("sjhgfskhagkfdgskjfhgskfsdgfkdsajf", 0);
} catch (TypeError $exception) {
    echo $exception->getMessage() . "\n";
}
?>
--EXPECTF--
Warning: chgrp(): No such file or directory in %s on line %d