We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67e9e83 commit 1147822Copy full SHA for 1147822
test/container/test_php_config.py
@@ -6,6 +6,17 @@ def test_configuration_is_effective(host):
6
7
assert u'memory_limit => -1 => -1' in config
8
assert u'opcache.enable_cli => On => On' in config
9
+ assert u'opcache.jit => 1255 => 1255' in config
10
+ assert u'opcache.jit_buffer_size => 128M => 128M' in config
11
+
12
+@pytest.mark.php_dev
13
+def test_configuration_is_effective(host):
14
+ config = get_config(host)
15
16
+ assert u'memory_limit => -1 => -1' in config
17
+ assert u'opcache.enable_cli => On => On' in config
18
+ assert u'opcache.jit => disable => disable' in config
19
20
21
def get_config(host):
22
return host.run('php -i').stdout
0 commit comments