mirror of
https://github.com/php/php-src.git
synced 2026-03-26 09:12:14 +01:00
Remove most of the `===DONE===` tags and its variations. Keep `===DONE===` if the test output otherwise becomes empty. Closes GH-4872.
17 lines
490 B
PHP
17 lines
490 B
PHP
--TEST--
|
|
Bug #77621 (Already defined constants are not properly reported)
|
|
--SKIPIF--
|
|
<?php
|
|
if (!extension_loaded('com_dotnet')) die('skip com_dotnet extension not available');
|
|
?>
|
|
--INI--
|
|
com.autoregister_verbose=1
|
|
--FILE--
|
|
<?php
|
|
define('ADSTYPE_INVALID', 0);
|
|
$root = dirname(array_change_key_case($_SERVER, CASE_UPPER)['COMSPEC']);
|
|
com_load_typelib("$root\activeds.tlb");
|
|
?>
|
|
--EXPECTF--
|
|
Warning: com_load_typelib(): Type library constant ADSTYPE_INVALID is already defined in %s on line %d
|