summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph M. Becker <cmbecker69@gmx.de>2020-06-02 17:12:34 +0200
committerChristoph M. Becker <cmbecker69@gmx.de>2020-06-02 17:12:34 +0200
commit86057f5f44c5bf52d48863bf5ea3f977bd00e0f0 (patch)
tree06f5adb5adb9a3d299663e9eda28de768e0c138b
parent486b8b1cd193fb5bb12d4810b18e076bb1f3933b (diff)
downloadphp-git-86057f5f44c5bf52d48863bf5ea3f977bd00e0f0.tar.gz
Skip new test case on Windows when JIT is enabled
Cf. <http://git.php.net/?p=php-src.git;a=commit;h=c5cf0af8a98cbc574fd315bf9d78033b896886f3>.
-rw-r--r--sapi/phpdbg/tests/bug73927.phpt6
1 files changed, 6 insertions, 0 deletions
diff --git a/sapi/phpdbg/tests/bug73927.phpt b/sapi/phpdbg/tests/bug73927.phpt
index 81a1d2fa47..f1890e4850 100644
--- a/sapi/phpdbg/tests/bug73927.phpt
+++ b/sapi/phpdbg/tests/bug73927.phpt
@@ -1,5 +1,11 @@
--TEST--
Bug #73927 (phpdbg fails with windows error prompt at "watch array")
+--SKIPIF--
+<?php
+if (PHP_OS_FAMILY === 'Windows' && ini_get('opcache.jit') && ini_get('opcache.jit_buffer_size')) {
+ die('xfail breakpoint/watchpoint issues with JIT on Windows');
+}
+?>
--PHPDBG--
b 19
r