Skip to content

Commit fbb4194

Browse files
committed
fix local test run
1 parent d750ae0 commit fbb4194

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

ext/opcache/tests/gh16979_check_file_cache_function.phpt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ opcache.enable=1
1717
opcache.enable_cli=1
1818
opcache.jit=disable
1919
opcache.file_cache="{PWD}/gh16979_cache"
20+
opcache.file_update_protection=0
2021
--EXTENSIONS--
2122
opcache
2223
--FILE--
@@ -35,9 +36,9 @@ var_dump(opcache_is_script_cached_in_file_cache(__FILE__));
3536
<?php
3637
require __DIR__ . '/cleanup_helper.inc';
3738

38-
$baseCacheDir = __DIR__ . '/gh16979_cache';
39+
$cacheDir = __DIR__ . '/gh16979_cache';
3940

40-
removeDirRecursive($baseCacheDir);
41+
removeDirRecursive($cacheDir);
4142
?>
4243
--EXPECTF--
4344
bool(true)

0 commit comments

Comments
 (0)