summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXinchen Hui <laruence@gmail.com>2016-01-01 13:46:19 +0800
committerXinchen Hui <laruence@gmail.com>2016-01-01 13:46:19 +0800
commit05defb4f56f30e254eb84b932566c226ec0c1f32 (patch)
treeae3887c5fd396b0296d37e2daeca7630603c5b60
parent5362f0ad7f6f1b0fe2dcee356a24bcd054c204f0 (diff)
downloadphp-git-05defb4f56f30e254eb84b932566c226ec0c1f32.tar.gz
Fixed test after fix lineno of finally
-rw-r--r--sapi/phpdbg/tests/stepping_001.phpt14
1 files changed, 8 insertions, 6 deletions
diff --git a/sapi/phpdbg/tests/stepping_001.phpt b/sapi/phpdbg/tests/stepping_001.phpt
index 074eeb47fa..5c92ba2f0b 100644
--- a/sapi/phpdbg/tests/stepping_001.phpt
+++ b/sapi/phpdbg/tests/stepping_001.phpt
@@ -32,22 +32,24 @@ prompt> [L10 %s ECHO "ok"
00011: } finally {
00012: echo " ... ok";
prompt> ok
-[L10 %s FAST_CALL J8 ~%d %s]
-[L12 %s ECHO " ... ok" %s]
+[L11 %s FAST_CALL J8 ~%d %s]
+>00011: } finally {
+ 00012: echo " ... ok";
+ 00013: }
+prompt> [L12 %s ECHO " ... ok" %s]
>00012: echo " ... ok";
00013: }
00014:
prompt> ... ok
[L12 %s FAST_RET ~%d %s]
-[L10 %s JMP J10 %s]
->00010: echo "ok";
- 00011: } finally {
+[L11 %s JMP J10 %s]
+>00011: } finally {
00012: echo " ... ok";
+ 00013: }
prompt> [L12 %s RETURN 1 %s]
>00012: echo " ... ok";
00013: }
00014:
-prompt> [Script ended normally]
prompt>
--FILE--
<?php