xref: /PHP-8.1/ext/opcache/tests/bug75255.phpt (revision e9f783fc)
1--TEST--
2Bug #75255 (Request hangs and not finish)
3--EXTENSIONS--
4opcache
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