Drop all JIT related XFAILS from phpdbg test suite

phpdbg now disables JIT, so these cause XFAIL warnings.
This commit is contained in:
Christoph M. Becker 2020-11-30 15:19:28 +01:00
parent 32cd5a1bc8
commit 57463cf78b
19 changed files with 0 additions and 93 deletions

View file

@ -1,11 +1,5 @@
--TEST--
Fundamental breakpoints functionality
--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 3
r

View file

@ -1,11 +1,5 @@
--TEST--
Preserve breakpoints on restart
--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 breakpoints_002.php:4
r

View file

@ -1,11 +1,5 @@
--TEST--
Test deleting breakpoints
--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 4
b del 0

View file

@ -1,11 +1,5 @@
--TEST--
Test opcode breakpoints
--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 ZEND_ECHO
r

View file

@ -5,9 +5,6 @@ Bug #73927 (phpdbg fails with windows error prompt at "watch array")
if (getenv('SKIP_ASAN')) {
die("skip intentionally causes segfaults");
}
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

View file

@ -1,11 +1,5 @@
--TEST--
Test breaks on HANDLE_EXCEPTION
--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 5
r

View file

@ -1,11 +1,5 @@
--TEST--
test finish and leave commands
--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');
}
?>
--INI--
opcache.optimization_level=0
--PHPDBG--

View file

@ -1,11 +1,5 @@
--TEST--
info constants test
--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 10
r

View file

@ -1,11 +1,5 @@
--TEST--
Test next command on function boundaries
--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 4
r

View file

@ -1,11 +1,5 @@
--TEST--
Test phpdbg_break_next() function
--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--
r
c

View file

@ -1,11 +1,5 @@
--TEST--
Getting executable lines from custom wrappers
--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--
r
q

View file

@ -1,11 +1,5 @@
--TEST--
Stdin and escaped args being passed to run command
--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');
}
?>
--CLEAN--
<?php
@unlink("run_002_tmp.fixture");

View file

@ -1,11 +1,5 @@
--TEST--
set_exception_handler() in phpdbg
--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--
r
c

View file

@ -5,9 +5,6 @@ Test simple recursive watchpoint
if (PHP_INT_SIZE == 4) {
die("xfail There may be flaws in the implementation of watchpoints that cause failures");
}
if (PHP_OS_FAMILY === 'Windows' && ini_get('opcache.jit') && ini_get('opcache.jit_buffer_size')) {
die('xfail breakpoint/watchpoint issues with JIT on Windows');
}
if (getenv('SKIP_ASAN')) {
die("skip intentionally causes segfaults");
}

View file

@ -5,9 +5,6 @@ Test simple array watchpoint with replace
if (PHP_INT_SIZE == 4) {
die("xfail There may be flaws in the implementation of watchpoints that cause failures");
}
if (PHP_OS_FAMILY === 'Windows' && ini_get('opcache.jit') && ini_get('opcache.jit_buffer_size')) {
die('xfail breakpoint/watchpoint issues with JIT on Windows');
}
if (getenv('SKIP_ASAN')) {
die("skip intentionally causes segfaults");
}

View file

@ -5,9 +5,6 @@ Test simple watchpoint with replace
if (PHP_INT_SIZE == 4) {
die("xfail There may be flaws in the implementation of watchpoints that cause failures");
}
if (PHP_OS_FAMILY === 'Windows' && ini_get('opcache.jit') && ini_get('opcache.jit_buffer_size')) {
die('xfail breakpoint/watchpoint issues with JIT on Windows');
}
if (getenv('SKIP_ASAN')) {
die("skip intentionally causes segfaults");
}

View file

@ -5,9 +5,6 @@ Test detection of inline string manipulations on zval watch
if (PHP_INT_SIZE == 4) {
die("xfail There may be flaws in the implementation of watchpoints that cause failures");
}
if (PHP_OS_FAMILY === 'Windows' && ini_get('opcache.jit') && ini_get('opcache.jit_buffer_size')) {
die('xfail breakpoint/watchpoint issues with JIT on Windows');
}
if (getenv('SKIP_ASAN')) {
die("skip intentionally causes segfaults");
}

View file

@ -5,9 +5,6 @@ Test proper watch comparisons when having multiple levels of indirection from a
if (PHP_INT_SIZE == 4) {
die("xfail There may be flaws in the implementation of watchpoints that cause failures");
}
if (PHP_OS_FAMILY === 'Windows' && ini_get('opcache.jit') && ini_get('opcache.jit_buffer_size')) {
die('xfail breakpoint/watchpoint issues with JIT on Windows');
}
if (getenv('SKIP_ASAN')) {
die("skip intentionally causes segfaults");
}

View file

@ -5,9 +5,6 @@ Test multiple watch elements pointing to the same watchpoint
if (PHP_INT_SIZE == 4) {
die("xfail There may be flaws in the implementation of watchpoints that cause failures");
}
if (PHP_OS_FAMILY === 'Windows' && ini_get('opcache.jit') && ini_get('opcache.jit_buffer_size')) {
die('xfail breakpoint/watchpoint issues with JIT on Windows');
}
if (getenv('SKIP_ASAN')) {
die("skip intentionally causes segfaults");
}