php-src/ext/sysvshm/tests/shutdown_crash_0.phpt
Anatol Belski a490485893 add test
2015-09-22 20:45:52 +02:00

23 lines
412 B
PHP

--TEST--
Shutdown crash when attached/removed same key segment multiple times
--SKIPIF--
<?php
if (!extension_loaded("sysvshm")){ print 'skip'; }
?>
--FILE--
<?php
/*$key = ftok(__FILE__, 't');
var_dump($key);*/
$key = 42;
var_dump($s = shm_attach($key, 1024));
shm_remove($s);
var_dump($s = shm_attach($key, 1024));
shm_remove($s);
--EXPECTF--
resource(%d) of type (sysvshm)
resource(%d) of type (sysvshm)