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-- --TEST--
Fundamental breakpoints functionality 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-- --PHPDBG--
b 3 b 3
r r

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

@ -5,9 +5,6 @@ Test simple recursive watchpoint
if (PHP_INT_SIZE == 4) { if (PHP_INT_SIZE == 4) {
die("xfail There may be flaws in the implementation of watchpoints that cause failures"); 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')) { if (getenv('SKIP_ASAN')) {
die("skip intentionally causes segfaults"); die("skip intentionally causes segfaults");
} }

View file

@ -5,9 +5,6 @@ Test simple array watchpoint with replace
if (PHP_INT_SIZE == 4) { if (PHP_INT_SIZE == 4) {
die("xfail There may be flaws in the implementation of watchpoints that cause failures"); 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')) { if (getenv('SKIP_ASAN')) {
die("skip intentionally causes segfaults"); die("skip intentionally causes segfaults");
} }

View file

@ -5,9 +5,6 @@ Test simple watchpoint with replace
if (PHP_INT_SIZE == 4) { if (PHP_INT_SIZE == 4) {
die("xfail There may be flaws in the implementation of watchpoints that cause failures"); 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')) { if (getenv('SKIP_ASAN')) {
die("skip intentionally causes segfaults"); 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) { if (PHP_INT_SIZE == 4) {
die("xfail There may be flaws in the implementation of watchpoints that cause failures"); 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')) { if (getenv('SKIP_ASAN')) {
die("skip intentionally causes segfaults"); 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) { if (PHP_INT_SIZE == 4) {
die("xfail There may be flaws in the implementation of watchpoints that cause failures"); 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')) { if (getenv('SKIP_ASAN')) {
die("skip intentionally causes segfaults"); 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) { if (PHP_INT_SIZE == 4) {
die("xfail There may be flaws in the implementation of watchpoints that cause failures"); 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')) { if (getenv('SKIP_ASAN')) {
die("skip intentionally causes segfaults"); die("skip intentionally causes segfaults");
} }