--TEST-- GH-18417 (Windows SHM reattachment fails when increasing memory_consumption or jit_buffer_size) --SKIPIF-- --FILE-- ["pipe", "r"], 1 => ["pipe", "w"], 2 => ["pipe", "w"], ]; $proc = proc_open([ PHP_BINARY, "-n", "-d", "extension_dir=$extension_dir", "-d", "opcache.memory_consumption=$new_memory_consumption", "-d", "opcache.enable=1", "-d", "opcache.enable_cli=1", "-r", "echo 1;" ], $descriptorspec, $pipes); echo stream_get_contents($pipes[1]); echo stream_get_contents($pipes[2]); proc_close($proc); ?> --EXPECT-- 1