mirror of
https://github.com/php/php-src.git
synced 2025-08-21 01:45:16 +02:00
Skip syntax errors in skipif conditions
This commit is contained in:
parent
b277548ed5
commit
eabb8a6324
6 changed files with 6 additions and 6 deletions
|
@ -3,7 +3,7 @@ Test simple recursive watchpoint
|
||||||
--SKIPIF--
|
--SKIPIF--
|
||||||
<?php
|
<?php
|
||||||
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");
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
--INI--
|
--INI--
|
||||||
|
|
|
@ -3,7 +3,7 @@ Test simple array watchpoint with replace
|
||||||
--SKIPIF--
|
--SKIPIF--
|
||||||
<?php
|
<?php
|
||||||
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");
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
--PHPDBG--
|
--PHPDBG--
|
||||||
|
|
|
@ -3,7 +3,7 @@ Test simple watchpoint with replace
|
||||||
--SKIPIF--
|
--SKIPIF--
|
||||||
<?php
|
<?php
|
||||||
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");
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
--PHPDBG--
|
--PHPDBG--
|
||||||
|
|
|
@ -3,7 +3,7 @@ Test detection of inline string manipulations on zval watch
|
||||||
--SKIPIF--
|
--SKIPIF--
|
||||||
<?php
|
<?php
|
||||||
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");
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
--INI--
|
--INI--
|
||||||
|
|
|
@ -3,7 +3,7 @@ Test proper watch comparisons when having multiple levels of indirection from a
|
||||||
--SKIPIF--
|
--SKIPIF--
|
||||||
<?php
|
<?php
|
||||||
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");
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
--PHPDBG--
|
--PHPDBG--
|
||||||
|
|
|
@ -3,7 +3,7 @@ Test multiple watch elements pointing to the same watchpoint
|
||||||
--SKIPIF--
|
--SKIPIF--
|
||||||
<?php
|
<?php
|
||||||
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");
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
--PHPDBG--
|
--PHPDBG--
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue