/
vshmidt
/
php
Обзор
Документация
Войти
/
vshmidt
/
php
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
ext/opcache/tests/file_cache_error.phpt
48 строк
1 KB
Ilija Tovilo
Fix unescaped {TMP} variables in tests
01 мар 2023, 15:24
Не верифицирован
01 мар 2023, 15:24
2b5aac9
Код
Авторство
О чём код?
--TEST-- File cache error 001 --EXTENSIONS-- opcache posix pcntl --INI-- opcache.enable_cli=1 opcache.file_cache="{TMP}" opcache.log_verbosity_level=2 opcache.interned_strings_buffer=8 --SKIPIF-- <?php if (!posix_setrlimit(POSIX_RLIMIT_FSIZE, 1, -1)) die('skip Test requires setrlimit(RLIMIT_FSIZE) to work'); if (ini_parse_quantity(ini_get('opcache.jit_buffer_size')) !== 0) die('skip File cache is disabled when JIT is on'); // Allow gcov to write to file posix_setrlimit(POSIX_RLIMIT_FSIZE, -1, -1); ?> --FILE-- <?php // Create new file to ensure that it's not cached accross test runs $file = tempnam(sys_get_temp_dir(), 'file_cache_error'); register_shutdown_function(function () use ($file) { unlink($file); }); file_put_contents($file, '<?php echo "OK";'); touch($file, time() - 3600); // Some systems will raise SIGXFSZ when RLIMIT_FSIZE is exceeded if (defined('SIGXFSZ')) { pcntl_signal(SIGXFSZ, SIG_IGN); } // Should cause writing to cache file to fail var_dump(posix_setrlimit(POSIX_RLIMIT_FSIZE, 1, -1)); // Will attempt to write to cache file, and fail require $file; // Allow gcov to write to file posix_setrlimit(POSIX_RLIMIT_FSIZE, -1, -1); ?> --EXPECTF-- bool(true) %sWarning opcache cannot write to file %s: %s OK