1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

Merge branch 'PHP-8.3'

* PHP-8.3:
  Skip .NET tests if mscoree is not available (#14281)
This commit is contained in:
Niels Dossche
2024-05-20 23:28:02 +02:00
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");