Skip to content

Commit 7f9b534

Browse files
lukasbergercmb69
authored andcommitted
Add missing 'skip' to bug79332.phpt skip message
The skip message must start with the word 'skip', otherwise the test will not be skipped. *Before:* Running selected tests. TEST 1/1 [ext/com_dotnet/tests/bug79332.phpt] ========DIFF======== 001+ Fatal error: Uncaught Error: Class 'COMPersistHelper' not found in /srv/php/ext/com_dotnet/tests/bug79332.php:2 001- A com_exception has been thrown 002+ Stack trace: 003+ #0 {main} 004+ thrown in /srv/php/ext/com_dotnet/tests/bug79332.php on line 2 ========DONE======== FAIL Bug #79332 (php_istreams are never freed) [ext/com_dotnet/tests/bug79332.phpt] *After:* Running selected tests. SKIP Bug #79332 (php_istreams are never freed) [ext/com_dotnet/tests/bug79332.phpt] reason: com_dotnet extension not available
1 parent 65120cf commit 7f9b534

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/com_dotnet/tests/bug79332.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Bug #79332 (php_istreams are never freed)
33
--SKIPIF--
44
<?php
5-
if (!extension_loaded('com_dotnet')) die('com_dotnet extension not available');
5+
if (!extension_loaded('com_dotnet')) die('skip com_dotnet extension not available');
66
?>
77
--FILE--
88
<?php

0 commit comments

Comments
 (0)