php-src/ext/sysvshm/tests/shutdown_crash_0.phpt
Nikita Popov 7485978339
Migrate SKIPIF -> EXTENSIONS (#7138)
This is an automated migration of most SKIPIF extension_loaded checks.
2021-06-11 11:57:42 +02:00

22 lines
371 B
PHP

--TEST--
Shutdown crash when attached/removed same key segment multiple times
--EXTENSIONS--
sysvshm
--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);
?>
--EXPECT--
object(SysvSharedMemory)#1 (0) {
}
object(SysvSharedMemory)#2 (0) {
}