summaryrefslogtreecommitdiff
path: root/sapi/phpdbg/tests
diff options
context:
space:
mode:
authorBob Weinand <bobwei9@hotmail.com>2016-12-22 00:38:47 +0100
committerBob Weinand <bobwei9@hotmail.com>2016-12-22 00:39:24 +0100
commit3b2b080cbcdcadb97f9dd2db1a6e9e4200c34023 (patch)
treecb4079d14adcd589e9caadef6329bf34165b419d /sapi/phpdbg/tests
parentc41826d1e626962621805eab650b1fcc2f1f49d8 (diff)
downloadphp-git-3b2b080cbcdcadb97f9dd2db1a6e9e4200c34023.tar.gz
Fixed bug #73704 (phpdbg shows the wrong line in files with shebang)
Diffstat (limited to 'sapi/phpdbg/tests')
-rw-r--r--sapi/phpdbg/tests/bug73704.phpt27
1 files changed, 27 insertions, 0 deletions
diff --git a/sapi/phpdbg/tests/bug73704.phpt b/sapi/phpdbg/tests/bug73704.phpt
new file mode 100644
index 0000000000..a3ee92b126
--- /dev/null
+++ b/sapi/phpdbg/tests/bug73704.phpt
@@ -0,0 +1,27 @@
+--TEST--
+Bug #73704 (phpdbg shows the wrong line in files with shebang)
+--PHPDBG--
+list 6
+b 4
+r
+c
+q
+--EXPECTF--
+[Successful compilation of %s]
+prompt> 00001: #!/usr/bin/env php
+ 00002: <?php
+ 00003:
+ 00004: echo 1;
+ 00005:
+prompt> [Breakpoint #0 added at %s:4]
+prompt> [Breakpoint #0 at %s:4, hits: 1]
+>00004: echo 1;
+ 00005:
+prompt> 1
+[Script ended normally]
+prompt>
+--FILE--
+#!/usr/bin/env php
+<?php
+
+echo 1;