diff options
author | Nikita Popov <nikita.ppv@gmail.com> | 2019-06-12 15:56:38 +0200 |
---|---|---|
committer | Nikita Popov <nikita.ppv@gmail.com> | 2019-06-12 15:56:38 +0200 |
commit | eabb8a6324dbe306f87a05d28709f461ef3c2589 (patch) | |
tree | 2d557770e54620b9e1cef3de3165a43d8cf713d6 | |
parent | b277548ed567caad1b7c9c22bf049b3f31af94a2 (diff) | |
download | php-git-eabb8a6324dbe306f87a05d28709f461ef3c2589.tar.gz |
Skip syntax errors in skipif conditions
-rw-r--r-- | sapi/phpdbg/tests/watch_001.phpt | 2 | ||||
-rw-r--r-- | sapi/phpdbg/tests/watch_002.phpt | 2 | ||||
-rw-r--r-- | sapi/phpdbg/tests/watch_003.phpt | 2 | ||||
-rw-r--r-- | sapi/phpdbg/tests/watch_004.phpt | 2 | ||||
-rw-r--r-- | sapi/phpdbg/tests/watch_005.phpt | 2 | ||||
-rw-r--r-- | sapi/phpdbg/tests/watch_006.phpt | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/sapi/phpdbg/tests/watch_001.phpt b/sapi/phpdbg/tests/watch_001.phpt index 05eb833128..86e5786e97 100644 --- a/sapi/phpdbg/tests/watch_001.phpt +++ b/sapi/phpdbg/tests/watch_001.phpt @@ -3,7 +3,7 @@ Test simple recursive watchpoint --SKIPIF-- <?php 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-- diff --git a/sapi/phpdbg/tests/watch_002.phpt b/sapi/phpdbg/tests/watch_002.phpt index c0d9536e9d..52336c08d0 100644 --- a/sapi/phpdbg/tests/watch_002.phpt +++ b/sapi/phpdbg/tests/watch_002.phpt @@ -3,7 +3,7 @@ Test simple array watchpoint with replace --SKIPIF-- <?php 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-- diff --git a/sapi/phpdbg/tests/watch_003.phpt b/sapi/phpdbg/tests/watch_003.phpt index 5bc560e749..e054b6f324 100644 --- a/sapi/phpdbg/tests/watch_003.phpt +++ b/sapi/phpdbg/tests/watch_003.phpt @@ -3,7 +3,7 @@ Test simple watchpoint with replace --SKIPIF-- <?php 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-- diff --git a/sapi/phpdbg/tests/watch_004.phpt b/sapi/phpdbg/tests/watch_004.phpt index e21c1dceb6..dcb37a4959 100644 --- a/sapi/phpdbg/tests/watch_004.phpt +++ b/sapi/phpdbg/tests/watch_004.phpt @@ -3,7 +3,7 @@ Test detection of inline string manipulations on zval watch --SKIPIF-- <?php 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-- diff --git a/sapi/phpdbg/tests/watch_005.phpt b/sapi/phpdbg/tests/watch_005.phpt index 7d479b5548..0bd44c9a01 100644 --- a/sapi/phpdbg/tests/watch_005.phpt +++ b/sapi/phpdbg/tests/watch_005.phpt @@ -3,7 +3,7 @@ Test proper watch comparisons when having multiple levels of indirection from a --SKIPIF-- <?php 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-- diff --git a/sapi/phpdbg/tests/watch_006.phpt b/sapi/phpdbg/tests/watch_006.phpt index f9a1f2c86c..fa292005a4 100644 --- a/sapi/phpdbg/tests/watch_006.phpt +++ b/sapi/phpdbg/tests/watch_006.phpt @@ -3,7 +3,7 @@ Test multiple watch elements pointing to the same watchpoint --SKIPIF-- <?php 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-- |