diff options
| author | Christoph M. Becker <cmbecker69@gmx.de> | 2020-09-13 15:35:22 +0200 |
|---|---|---|
| committer | Christoph M. Becker <cmbecker69@gmx.de> | 2020-09-13 15:38:57 +0200 |
| commit | 873c0873983e4e28e8d120ffed8725d996d0e925 (patch) | |
| tree | 4230cb31272c3a80858e6280600755f8e68a64a4 /ext/session/tests/session_decode_basic_serialize.phpt | |
| parent | 385423442a634b60aa0f137ea5466ce65944373d (diff) | |
| download | php-git-873c0873983e4e28e8d120ffed8725d996d0e925.tar.gz | |
Mark tests as XFAIL on Windows
These tests segfault with tracing JIT on Windows as of a recent
commit[1]. A link to a backtrace is available in a comment[2]. For
now, we mark these tests as XFAIL, to keep AppVeyor CI helpful.
[1] <https://github.com/php/php-src/commit/817ae414962480d133ed76618b88b3e7ba482718>
[2] <https://github.com/php/php-src/commit/817ae414962480d133ed76618b88b3e7ba482718#commitcomment-42227420>
Diffstat (limited to 'ext/session/tests/session_decode_basic_serialize.phpt')
| -rw-r--r-- | ext/session/tests/session_decode_basic_serialize.phpt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ext/session/tests/session_decode_basic_serialize.phpt b/ext/session/tests/session_decode_basic_serialize.phpt index 12f0f20570..33e101afe9 100644 --- a/ext/session/tests/session_decode_basic_serialize.phpt +++ b/ext/session/tests/session_decode_basic_serialize.phpt @@ -2,6 +2,11 @@ Test session_decode() function : basic functionality --SKIPIF-- <?php include('skipif.inc'); ?> +<?php +if (PHP_OS_FAMILY === 'Windows' && ini_get('opcache.jit') && ini_get('opcache.jit_buffer_size')) { + die('xfail issues with JIT on Windows'); +} +?> --FILE-- <?php |
