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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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