xref: /PHP-5.5/ext/opcache/tests/bug65559.phpt (revision f28ac55b)
1--TEST--
2Bug #65559 (cache not cleared if changes occur while running)
3--INI--
4opcache.enable=1
5opcache.enable_cli=1
6opcache.file_update_protection=2
7--SKIPIF--
8<?php require_once('skipif.inc'); ?>
9--FILE--
10<?php
11$file =  __DIR__ . "/bug6559.inc.php";
12file_put_contents($file, '<?php return 1;');
13$var = include $file;
14var_dump($var);
15file_put_contents($file, '<?php return 2;');
16$var = include $file;
17var_dump($var);
18@unlink($file);
19?>
20--EXPECT--
21int(1)
22int(2)
23