1
0
mirror of https://github.com/php/php-src.git synced 2026-03-28 18:22:42 +01:00

Merge branch 'PHP-7.0' into PHP-7.1

* PHP-7.0:
  fix test
This commit is contained in:
Anatol Belski
2016-08-18 15:36:07 +02:00

View File

@@ -4,7 +4,7 @@ Bug #72858 shm_attach null dereference
<?php
if (!extension_loaded("sysvshm")){ print 'skip'; }
if (4 < PHP_INT_SIZE) { print "skip 32-bit only"; }
if( substr(PHP_OS, 0, 3) != "WIN" ) { print "skip windows only" }
if (substr(PHP_OS, 0, 3) != "WIN") { print "skip windows only"; }
?>
--FILE--
<?php