Skip to content

Commit 646b64b

Browse files
committed
Fix skipif syntax errors
Apparently I did this only on masster...
1 parent 8b6b487 commit 646b64b

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

azure/i386/job.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
export PKG_CONFIG=/usr/bin/i686-linux-gnu-pkg-config
1717
./configure ${{ parameters.configurationParameters }} \
1818
--prefix=/usr \
19-
--disable-phpdbg \
19+
--enable-phpdbg \
2020
--enable-fpm \
2121
--enable-intl \
2222
--with-pdo-mysql=mysqlnd \

sapi/phpdbg/tests/watch_001.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Test simple recursive watchpoint
33
--SKIPIF--
44
<?php
55
if (PHP_INT_SIZE == 4) {
6-
die("xfail There may be flaws in the implementation of watchpoints that cause failures")
6+
die("xfail There may be flaws in the implementation of watchpoints that cause failures");
77
}
88
?>
99
--INI--

sapi/phpdbg/tests/watch_002.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Test simple array watchpoint with replace
33
--SKIPIF--
44
<?php
55
if (PHP_INT_SIZE == 4) {
6-
die("xfail There may be flaws in the implementation of watchpoints that cause failures")
6+
die("xfail There may be flaws in the implementation of watchpoints that cause failures");
77
}
88
?>
99
--PHPDBG--

sapi/phpdbg/tests/watch_003.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Test simple watchpoint with replace
33
--SKIPIF--
44
<?php
55
if (PHP_INT_SIZE == 4) {
6-
die("xfail There may be flaws in the implementation of watchpoints that cause failures")
6+
die("xfail There may be flaws in the implementation of watchpoints that cause failures");
77
}
88
?>
99
--PHPDBG--

sapi/phpdbg/tests/watch_004.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Test detection of inline string manipulations on zval watch
33
--SKIPIF--
44
<?php
55
if (PHP_INT_SIZE == 4) {
6-
die("xfail There may be flaws in the implementation of watchpoints that cause failures")
6+
die("xfail There may be flaws in the implementation of watchpoints that cause failures");
77
}
88
?>
99
--INI--

sapi/phpdbg/tests/watch_005.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Test proper watch comparisons when having multiple levels of indirection from a
33
--SKIPIF--
44
<?php
55
if (PHP_INT_SIZE == 4) {
6-
die("xfail There may be flaws in the implementation of watchpoints that cause failures")
6+
die("xfail There may be flaws in the implementation of watchpoints that cause failures");
77
}
88
?>
99
--PHPDBG--

sapi/phpdbg/tests/watch_006.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Test multiple watch elements pointing to the same watchpoint
33
--SKIPIF--
44
<?php
55
if (PHP_INT_SIZE == 4) {
6-
die("xfail There may be flaws in the implementation of watchpoints that cause failures")
6+
die("xfail There may be flaws in the implementation of watchpoints that cause failures");
77
}
88
?>
99
--PHPDBG--

0 commit comments

Comments
 (0)