Add skip online test to curl_upkeep test

This commit is contained in:
Pierrick Charron 2022-06-13 18:57:17 -04:00
parent b9af4335e3
commit 65472c792c
No known key found for this signature in database
GPG key ID: 286AF1F9897469DC

View file

@ -4,6 +4,7 @@ curl_upkeep() function
curl
--SKIPIF--
<?php
if (getenv("SKIP_ONLINE_TESTS")) die("skip online test");
if (curl_version()['version_number'] < 0x073e00) die('skip requires curl >= 7.62.0');
?>
--FILE--