Tests updates: DB try catch for the ACL test, curl setup fix

curl init alone is not enought to validate a url.

for DB conneciton use try/catch to get errors and skip test
This commit is contained in:
2026-06-25 16:40:10 +09:00
parent d66fce374c
commit e3306a096f
2 changed files with 25 additions and 15 deletions
@@ -58,6 +58,10 @@ final class CoreLibsUrlRequestsCurlTest extends TestCase
if ($handle === false) {
continue;
}
$status = curl_exec($handle);
if ($status === false) {
continue;
}
$this->url_basic = $url;
// print "Open: $url\n";
break;