mirror of
https://github.com/php/php-src.git
synced 2026-04-20 06:21:12 +02:00
The test as is can only work if com_dotnet is built dynamically, and not already loaded via the php.ini file. While this is given on AppVeyor, it may not be given in other environments. Closes GH-8879.
24 lines
611 B
PHP
24 lines
611 B
PHP
--TEST--
|
|
Bug #77578 (Crash when php unload)
|
|
--EXTENSIONS--
|
|
com_dotnet
|
|
--FILE--
|
|
<?php
|
|
// To actually be able to verify the crash during shutdown on Windows, we have
|
|
// to execute a PHP subprocess, and check its exit status.
|
|
$php = PHP_BINARY;
|
|
$extension_dir = ini_get("extension_dir");
|
|
$script = <<<SCRIPT
|
|
if (!extension_loaded('com_dotnet')) dl('com_dotnet');
|
|
ini_set('com.autoregister_typelib', '1');
|
|
new COM('WbemScripting.SWbemLocator');
|
|
SCRIPT;
|
|
$command = "$php -d extension_dir=$extension_dir -r \"$script\"";
|
|
exec($command, $output, $status);
|
|
var_dump($output, $status);
|
|
?>
|
|
--EXPECT--
|
|
array(0) {
|
|
}
|
|
int(0)
|