xref: /php-src/Zend/tests/bug77660.phpt (revision 1c22ace0)
1--TEST--
2Bug #77660 (Segmentation fault on break 2147483648)
3--SKIPIF--
4<?php if (PHP_INT_SIZE != 8) die("skip this test is for 64bit platform only"); ?>
5--FILE--
6<?php
7for(;;) break 2147483648;
8?>
9--EXPECTF--
10Fatal error: Cannot 'break' 2147483648 levels in %sbug77660.php on line %d
11