diff options
author | Anatol Belski <ab@php.net> | 2018-02-13 14:04:51 +0100 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2018-02-13 14:04:51 +0100 |
commit | 2235da59af3a84210c5b918b348da8ea60045ea7 (patch) | |
tree | eb1d19efdb1f50b71d653091086b8b4aeda92db1 /ext/opcache | |
parent | 8c1147b0891ca2c445eb4d8e5aefe8d000c1e7ae (diff) | |
download | php-git-2235da59af3a84210c5b918b348da8ea60045ea7.tar.gz |
Extend skipif check
Diffstat (limited to 'ext/opcache')
-rw-r--r-- | ext/opcache/tests/jmp_elim_001.phpt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/opcache/tests/jmp_elim_001.phpt b/ext/opcache/tests/jmp_elim_001.phpt index 69974a1fa0..64a9af266f 100644 --- a/ext/opcache/tests/jmp_elim_001.phpt +++ b/ext/opcache/tests/jmp_elim_001.phpt @@ -2,6 +2,7 @@ Edge-cases in constant conditional jump elimination --SKIPIF-- <?php if (PHP_INT_SIZE != 8) die("skip for machines with 64-bit longs"); ?> +<?php if (!extension_loaded("json")) print "skip"; ?> <?php require_once('skipif.inc'); ?> --FILE-- <?php |