Skip to content

Commit

Permalink
Mark tests that test for remote log output also as DBGp tests
Browse files Browse the repository at this point in the history
  • Loading branch information
derickr committed Feb 8, 2019
1 parent 1effc31 commit 83278ea
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions tests/bug00932.phpt
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
Test for bug #932: Show an error if Xdebug can't open the remote debug log. Test for bug #932: Show an error if Xdebug can't open the remote debug log.
--SKIPIF-- --SKIPIF--
<?php if (substr(PHP_OS, 0, 3) == "WIN") die("skip Not for Windows"); ?> <?php if (substr(PHP_OS, 0, 3) == "WIN") die("skip Not for Windows"); ?>
<?php if (getenv("SKIP_DBGP_TESTS")) { exit("skip Excluding DBGp tests"); } ?>
--INI-- --INI--
xdebug.default_enable=1 xdebug.default_enable=1
xdebug.remote_enable=1 xdebug.remote_enable=1
Expand Down
1 change: 1 addition & 0 deletions tests/remote_log-unix-2.phpt
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
Test for Xdebug's remote log (with unix sockets and header) Test for Xdebug's remote log (with unix sockets and header)
--SKIPIF-- --SKIPIF--
<?php if (substr(PHP_OS, 0, 3) == "WIN") die("skip Not for Windows"); ?> <?php if (substr(PHP_OS, 0, 3) == "WIN") die("skip Not for Windows"); ?>
<?php if (getenv("SKIP_DBGP_TESTS")) { exit("skip Excluding DBGp tests"); } ?>
--ENV-- --ENV--
I_LIKE_COOKIES=unix:///tmp/haxx0r.sock I_LIKE_COOKIES=unix:///tmp/haxx0r.sock
--INI-- --INI--
Expand Down
1 change: 1 addition & 0 deletions tests/remote_log-unix.phpt
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
Test for Xdebug's remote log (with unix sockets) Test for Xdebug's remote log (with unix sockets)
--SKIPIF-- --SKIPIF--
<?php if (substr(PHP_OS, 0, 3) == "WIN") die("skip Not for Windows"); ?> <?php if (substr(PHP_OS, 0, 3) == "WIN") die("skip Not for Windows"); ?>
<?php if (getenv("SKIP_DBGP_TESTS")) { exit("skip Excluding DBGp tests"); } ?>
--ENV-- --ENV--
I_LIKE_COOKIES=doesnotexist3 I_LIKE_COOKIES=doesnotexist3
--INI-- --INI--
Expand Down
1 change: 1 addition & 0 deletions tests/remote_log1.phpt
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
Test for Xdebug's remote log (can not connect, no remote callback) Test for Xdebug's remote log (can not connect, no remote callback)
--SKIPIF-- --SKIPIF--
<?php if (substr(PHP_OS, 0, 3) == "WIN") die("skip Not for Windows"); ?> <?php if (substr(PHP_OS, 0, 3) == "WIN") die("skip Not for Windows"); ?>
<?php if (getenv("SKIP_DBGP_TESTS")) { exit("skip Excluding DBGp tests"); } ?>
--INI-- --INI--
xdebug.remote_enable=1 xdebug.remote_enable=1
xdebug.remote_log=/tmp/remote-log1.txt xdebug.remote_log=/tmp/remote-log1.txt
Expand Down
1 change: 1 addition & 0 deletions tests/remote_log2.phpt
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
Test for Xdebug's remote log (can not connect, with not-found remote callback) Test for Xdebug's remote log (can not connect, with not-found remote callback)
--SKIPIF-- --SKIPIF--
<?php if (substr(PHP_OS, 0, 3) == "WIN") die("skip Not for Windows"); ?> <?php if (substr(PHP_OS, 0, 3) == "WIN") die("skip Not for Windows"); ?>
<?php if (getenv("SKIP_DBGP_TESTS")) { exit("skip Excluding DBGp tests"); } ?>
--INI-- --INI--
xdebug.remote_enable=1 xdebug.remote_enable=1
xdebug.remote_log=/tmp/remote-log2.txt xdebug.remote_log=/tmp/remote-log2.txt
Expand Down
1 change: 1 addition & 0 deletions tests/remote_log3.phpt
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
Test for Xdebug's remote log (with xdebug.remote_addr_header) Test for Xdebug's remote log (with xdebug.remote_addr_header)
--SKIPIF-- --SKIPIF--
<?php if (substr(PHP_OS, 0, 3) == "WIN") die("skip Not for Windows"); ?> <?php if (substr(PHP_OS, 0, 3) == "WIN") die("skip Not for Windows"); ?>
<?php if (getenv("SKIP_DBGP_TESTS")) { exit("skip Excluding DBGp tests"); } ?>
--INI-- --INI--
xdebug.remote_enable=1 xdebug.remote_enable=1
xdebug.remote_log=/tmp/remote-log3.txt xdebug.remote_log=/tmp/remote-log3.txt
Expand Down
1 change: 1 addition & 0 deletions tests/remote_log4.phpt
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
Test for Xdebug's remote log (with xdebug.remote_addr_header value) Test for Xdebug's remote log (with xdebug.remote_addr_header value)
--SKIPIF-- --SKIPIF--
<?php if (substr(PHP_OS, 0, 3) == "WIN") die("skip Not for Windows"); ?> <?php if (substr(PHP_OS, 0, 3) == "WIN") die("skip Not for Windows"); ?>
<?php if (getenv("SKIP_DBGP_TESTS")) { exit("skip Excluding DBGp tests"); } ?>
--ENV-- --ENV--
I_LIKE_COOKIES=doesnotexist3 I_LIKE_COOKIES=doesnotexist3
--INI-- --INI--
Expand Down

0 comments on commit 83278ea

Please sign in to comment.