Skip to content

Commit 4918765

Browse files
authored
SKIP_(SLOW|ONLINE)_TESTS (#11479)
it was missing the SKIP_ONLINE_TESTS check for windows.
1 parent ad5ee8a commit 4918765

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

ext/sockets/tests/socket_shutdown-win32.phpt

+7
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,13 @@ sockets
1010
if(substr(PHP_OS, 0, 3) != 'WIN' ) {
1111
die('skip windows only test');
1212
}
13+
if (getenv("SKIP_SLOW_TESTS")) {
14+
die("skip slow test");
15+
}
16+
if (getenv("SKIP_ONLINE_TESTS")) {
17+
die("skip online test");
18+
}
19+
1320
?>
1421
--FILE--
1522
<?php

0 commit comments

Comments
 (0)