Merge branch 'PHP-8.2' into PHP-8.3

* PHP-8.2:
  Skip .NET tests if mscoree is not available (#14281)
This commit is contained in:
Niels Dossche 2024-05-20 23:27:51 +02:00
commit 59744a7fc0
No known key found for this signature in database
GPG Key ID: B8A8AD166DF0E2E5
2 changed files with 5 additions and 0 deletions

View File

@ -5,6 +5,7 @@ com_dotnet
--SKIPIF--
<?php
if (PHP_INT_SIZE != 8) die("skip this test is for 64bit platforms only");
if (!class_exists("dotnet")) die("skip mscoree not available");
?>
--FILE--
<?php

View File

@ -2,6 +2,10 @@
Bug #77177 (Serializing or unserializing COM objects crashes)
--EXTENSIONS--
com_dotnet
--SKIPIF--
<?php
if (!class_exists("dotnet")) die("skip mscoree not available");
?>
--FILE--
<?php
$com = new COM("WScript.Shell");