diff options
author | Xinchen Hui <laruence@php.net> | 2011-09-25 03:35:57 +0000 |
---|---|---|
committer | Xinchen Hui <laruence@php.net> | 2011-09-25 03:35:57 +0000 |
commit | 3fd08b3bd49086f9a9d0f05e395a29c20ded90a2 (patch) | |
tree | 0afbf7be255b4d9207984c95f9c4db268496b3b3 | |
parent | 579408b8978dbbb6b41744547a08ea4fba3ae3bc (diff) | |
download | php-git-3fd08b3bd49086f9a9d0f05e395a29c20ded90a2.tar.gz |
Fix tests due to bison depened message format
-rw-r--r-- | ext/phar/tests/fatal_error_webphar.phpt | 2 | ||||
-rw-r--r-- | tests/basic/bug51709_1.phpt | 2 | ||||
-rw-r--r-- | tests/basic/bug51709_2.phpt | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/ext/phar/tests/fatal_error_webphar.phpt b/ext/phar/tests/fatal_error_webphar.phpt index 9d0970d178..3153c344e0 100644 --- a/ext/phar/tests/fatal_error_webphar.phpt +++ b/ext/phar/tests/fatal_error_webphar.phpt @@ -15,4 +15,4 @@ Content-type: text/html; charset=UTF-8 --EXPECTF-- string(9) "\Web\View" -Parse error: syntax error, unexpected 'echo' (T_ECHO), expecting function (T_FUNCTION) in phar:///%sfatal_error_webphar.php/Web/View.php on line 380 +Parse error: syntax error, unexpected %s, expecting %s in phar:///%sfatal_error_webphar.php/Web/View.php on line 380 diff --git a/tests/basic/bug51709_1.phpt b/tests/basic/bug51709_1.phpt index 19d298ad7d..3f2d544e54 100644 --- a/tests/basic/bug51709_1.phpt +++ b/tests/basic/bug51709_1.phpt @@ -13,4 +13,4 @@ class foo { ===DONE=== <?php exit(0); ?> --EXPECTF-- -Parse error: syntax error, unexpected 'for' (T_FOR), expecting identifier (T_STRING) in %sbug51709_1.php on line %d +Parse error: syntax error, unexpected %s, expecting %s in %sbug51709_1.php on line %d diff --git a/tests/basic/bug51709_2.phpt b/tests/basic/bug51709_2.phpt index c5e904df83..bb1f91cc4c 100644 --- a/tests/basic/bug51709_2.phpt +++ b/tests/basic/bug51709_2.phpt @@ -13,4 +13,4 @@ class foo { ===DONE=== <?php exit(0); ?> --EXPECTF-- -Parse error: syntax error, unexpected 'goto' (T_GOTO), expecting identifier (T_STRING) in %sbug51709_2.php on line %d +Parse error: syntax error, unexpected %s, expecting %s in %sbug51709_2.php on line %d |