1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

SKIP_(SLOW|ONLINE)_TESTS (#11479)

it was missing the SKIP_ONLINE_TESTS check for windows.
This commit is contained in:
divinity76
2023-06-19 20:44:03 +02:00
committed by GitHub
parent ad5ee8a2b7
commit 4918765d54

View File

@@ -10,6 +10,13 @@ sockets
if(substr(PHP_OS, 0, 3) != 'WIN' ) {
die('skip windows only test');
}
if (getenv("SKIP_SLOW_TESTS")) {
die("skip slow test");
}
if (getenv("SKIP_ONLINE_TESTS")) {
die("skip online test");
}
?>
--FILE--
<?php