summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLukas Berger <berger.lukas@gmail.com>2020-03-26 10:39:39 -0700
committerChristoph M. Becker <cmbecker69@gmx.de>2020-03-26 23:14:10 +0100
commit7f9b534e3a3c8129b7ddcb86454483c43a309387 (patch)
tree8f96d0ab09e8f576dedf49982530fb00884fb715
parent65120cfc0969fe9ebd3d4d659b610a54a35ae026 (diff)
downloadphp-git-7f9b534e3a3c8129b7ddcb86454483c43a309387.tar.gz
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
-rw-r--r--ext/com_dotnet/tests/bug79332.phpt2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/com_dotnet/tests/bug79332.phpt b/ext/com_dotnet/tests/bug79332.phpt
index 45856b5488..93add95d15 100644
--- a/ext/com_dotnet/tests/bug79332.phpt
+++ b/ext/com_dotnet/tests/bug79332.phpt
@@ -2,7 +2,7 @@
Bug #79332 (php_istreams are never freed)
--SKIPIF--
<?php
-if (!extension_loaded('com_dotnet')) die('com_dotnet extension not available');
+if (!extension_loaded('com_dotnet')) die('skip com_dotnet extension not available');
?>
--FILE--
<?php