xref: /PHP-7.4/ext/opcache/tests/bug75255.phpt (revision 75bc3446)
1--TEST--
2Bug #75255 (Request hangs and not finish)
3--SKIPIF--
4<?php require_once('skipif.inc'); ?>
5--FILE--
6<?php
7function generatePlanImage() {
8    if ($abc > 5) {
9        $abc = 5;
10    }
11    for ($row = 0; $row < $abc; $row++) {
12        for ($col = 0; $col < $numCols; $col++) {
13            getPossibleRatio($abc);
14        }
15    }
16}
17?>
18DONE
19--EXPECT--
20DONE
21