mirror of
https://github.com/php/php-src.git
synced 2026-04-23 07:58:20 +02:00
56f90492d6
For rationale, see https://github.com/php/php-src/pull/6787 Extensions migrated in this part: * bcmath * bz2 * calendar * com_dotnet * ctype Closes GH-6797.
20 lines
504 B
PHP
20 lines
504 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;
|
|
$ini = php_ini_loaded_file();
|
|
$iniopt = $ini ? "-c $ini" : '';
|
|
$command = "$php $iniopt -d com.autoregister_typelib=1 -r \"new COM('WbemScripting.SWbemLocator');\"";
|
|
exec($command, $output, $status);
|
|
var_dump($output, $status);
|
|
?>
|
|
--EXPECT--
|
|
array(0) {
|
|
}
|
|
int(0)
|