mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
Merge branch 'PHP-8.3'
* PHP-8.3: Skip .NET tests if mscoree is not available (#14281)
This commit is contained in:
commit
dbbd01235d
2 changed files with 5 additions and 0 deletions
|
@ -5,6 +5,7 @@ com_dotnet
|
||||||
--SKIPIF--
|
--SKIPIF--
|
||||||
<?php
|
<?php
|
||||||
if (PHP_INT_SIZE != 8) die("skip this test is for 64bit platforms only");
|
if (PHP_INT_SIZE != 8) die("skip this test is for 64bit platforms only");
|
||||||
|
if (!class_exists("dotnet")) die("skip mscoree not available");
|
||||||
?>
|
?>
|
||||||
--FILE--
|
--FILE--
|
||||||
<?php
|
<?php
|
||||||
|
|
|
@ -2,6 +2,10 @@
|
||||||
Bug #77177 (Serializing or unserializing COM objects crashes)
|
Bug #77177 (Serializing or unserializing COM objects crashes)
|
||||||
--EXTENSIONS--
|
--EXTENSIONS--
|
||||||
com_dotnet
|
com_dotnet
|
||||||
|
--SKIPIF--
|
||||||
|
<?php
|
||||||
|
if (!class_exists("dotnet")) die("skip mscoree not available");
|
||||||
|
?>
|
||||||
--FILE--
|
--FILE--
|
||||||
<?php
|
<?php
|
||||||
$com = new COM("WScript.Shell");
|
$com = new COM("WScript.Shell");
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue