From 4918765d54128916fb34c05d752a1daf72d128f6 Mon Sep 17 00:00:00 2001 From: divinity76 Date: Mon, 19 Jun 2023 20:44:03 +0200 Subject: [PATCH] SKIP_(SLOW|ONLINE)_TESTS (#11479) it was missing the SKIP_ONLINE_TESTS check for windows. --- ext/sockets/tests/socket_shutdown-win32.phpt | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/ext/sockets/tests/socket_shutdown-win32.phpt b/ext/sockets/tests/socket_shutdown-win32.phpt index 860bf12ac20..46e62f14f76 100644 --- a/ext/sockets/tests/socket_shutdown-win32.phpt +++ b/ext/sockets/tests/socket_shutdown-win32.phpt @@ -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--