-
Notifications
You must be signed in to change notification settings - Fork 7.8k
/
Copy path007.phpt
43 lines (32 loc) · 916 Bytes
/
007.phpt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
--TEST--
shm_remove() tests
--SKIPIF--
<?php if (!extension_loaded("sysvshm")) print "skip"; ?>
--FILE--
<?php
$key = ftok(__FILE__, 't');
$s = shm_attach($key, 1024);
var_dump(shm_remove());
var_dump(shm_remove(-1));
var_dump(shm_remove(0));
var_dump(shm_remove(""));
var_dump(shm_remove($s));
var_dump(shm_remove($s));
shm_detach($s);
var_dump(shm_remove($s));
echo "Done\n";
?>
--EXPECTF--
Warning: shm_remove() expects exactly 1 parameter, 0 given in %s007.php on line %d
NULL
Warning: shm_remove() expects parameter 1 to be resource, integer given in %s007.php on line %d
NULL
Warning: shm_remove() expects parameter 1 to be resource, integer given in %s007.php on line %d
NULL
Warning: shm_remove() expects parameter 1 to be resource, string given in %s007.php on line %d
NULL
bool(true)
bool(true)
Warning: shm_remove(): %d is not a valid sysvshm resource in %s007.php on line %d
bool(false)
Done