diff options
Diffstat (limited to 'ext/sysvshm/tests/002.phpt')
-rw-r--r-- | ext/sysvshm/tests/002.phpt | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/ext/sysvshm/tests/002.phpt b/ext/sysvshm/tests/002.phpt new file mode 100644 index 0000000..61174c6 --- /dev/null +++ b/ext/sysvshm/tests/002.phpt @@ -0,0 +1,67 @@ +--TEST-- +shm_attach() tests +--SKIPIF-- +<?php if (!extension_loaded("sysvshm")) print "skip"; ?> +--FILE-- +<?php + +$key = ftok(__FILE__, 't'); + +var_dump(shm_attach()); +var_dump(shm_attach(1,2,3,4)); + +var_dump(shm_attach(-1, 0)); +var_dump(shm_attach(0, -1)); +var_dump(shm_attach(123, -1)); +var_dump($s = shm_attach($key, -1)); +shm_remove($s); +var_dump($s = shm_attach($key, 0)); +shm_remove($s); + +var_dump($s = shm_attach($key, 1024)); +shm_remove($key); +var_dump($s = shm_attach($key, 1024)); +shm_remove($s); +var_dump(shm_attach($key, 1024, 0666)); +shm_remove($s); + +var_dump($s = shm_attach($key, 1024)); +shm_remove($s); +var_dump($s = shm_attach($key)); +shm_remove($s); + +echo "Done\n"; +?> +--EXPECTF-- +Warning: shm_attach() expects at least 1 parameter, 0 given in %s on line %d +NULL + +Warning: shm_attach() expects at most 3 parameters, 4 given in %s on line %d +NULL + +Warning: shm_attach(): Segment size must be greater than zero in %s on line %d +bool(false) + +Warning: shm_attach(): Segment size must be greater than zero in %s on line %d +bool(false) + +Warning: shm_attach(): Segment size must be greater than zero in %s on line %d +bool(false) + +Warning: shm_attach(): Segment size must be greater than zero in %s on line %d +bool(false) + +Warning: shm_remove() expects parameter 1 to be resource, boolean given in %s on line %d + +Warning: shm_attach(): Segment size must be greater than zero in %s on line %d +bool(false) + +Warning: shm_remove() expects parameter 1 to be resource, boolean given in %s on line %d +resource(%d) of type (sysvshm) + +Warning: shm_remove() expects parameter 1 to be resource, integer given in %s on line %d +resource(%d) of type (sysvshm) +resource(%d) of type (sysvshm) +resource(%d) of type (sysvshm) +resource(%d) of type (sysvshm) +Done |