1--TEST-- 2Bug GH-8461 002 (JIT does not account for class re-compile) 3--EXTENSIONS-- 4opcache 5--INI-- 6opcache.enable=1 7opcache.enable_cli=1 8opcache.jit=1255 9opcache.file_update_protection=0 10opcache.revalidate_freq=0 11opcache.protect_memory=1 12--FILE-- 13<?php 14 15// Checks that JITed code does not crash in --repeat 2 after the UniqueList 16// class is recompiled. 17 18require __DIR__ . '/gh8461-002.inc'; 19 20for ($i = 0; $i < 10; $i++) { 21 UniqueList::foo(); 22} 23 24// mark the file as changed (important) 25touch(__DIR__ . '/gh8461-002.inc'); 26 27print "OK"; 28?> 29--EXPECT-- 30OK 31