summaryrefslogtreecommitdiff
path: root/sapi/phpdbg/tests
diff options
context:
space:
mode:
authorBob Weinand <bobwei9@hotmail.com>2016-12-22 00:42:05 +0100
committerBob Weinand <bobwei9@hotmail.com>2016-12-22 00:42:05 +0100
commit5d7ce7274757451a536b3521debd8f89365b0349 (patch)
tree4d9cdf1cb2825b65acc4361e3371a8a7403b4df4 /sapi/phpdbg/tests
parent3df43437fe76a2f396b77c1e00e8c68c5038d1ce (diff)
parent728502fc2978dcf9286ac049a5dbfa74187c9746 (diff)
downloadphp-git-5d7ce7274757451a536b3521debd8f89365b0349.tar.gz
Merge branch 'PHP-7.1'
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;