php-src/ext/sysvshm/tests/002.phpt
Matt Wilmas 1fa3b21c15 MFH: Fixed error message grammar:
- "cannot" instead of "can not" (meaning "also can")
 - "than" instead of "then" (Hint: "then" should hardly be needed;
     you're not telling the order in which to do something)

... plus removed a couple ending. dots
2009-06-06 02:40:49 +00:00

68 lines
1.7 KiB
PHP

--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