1--TEST--
2Preloading with auto_globals_jit=0
3--INI--
4auto_globals_jit=0
5opcache.enable=1
6opcache.enable_cli=1
7opcache.preload={PWD}/preloading_no_auto_globals_jit.inc
8--EXTENSIONS--
9opcache
10--SKIPIF--
11<?php
12if (PHP_OS_FAMILY == 'Windows') die('skip Preloading is not supported on Windows');
13?>
14--FILE--
15<?php
16$test = new Test;
17var_dump($test->count_global_server());
18?>
19--EXPECTF--
20int(%d)
21