summaryrefslogtreecommitdiff
path: root/sapi/phpdbg/tests
diff options
context:
space:
mode:
authorBob Weinand <bobwei9@hotmail.com>2016-12-22 00:40:54 +0100
committerBob Weinand <bobwei9@hotmail.com>2016-12-22 00:40:54 +0100
commit728502fc2978dcf9286ac049a5dbfa74187c9746 (patch)
tree942598ac96c57dca8e18ba08ee85222715fa67a9 /sapi/phpdbg/tests
parented0602fe311662e303c87cd63f190c609ee55923 (diff)
parent3b2b080cbcdcadb97f9dd2db1a6e9e4200c34023 (diff)
downloadphp-git-728502fc2978dcf9286ac049a5dbfa74187c9746.tar.gz
Merge branch 'PHP-7.0' into 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;