gh8461-002.phpt 580 B

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