]> granicus.if.org Git - php/commitdiff
Fix #78684: PCRE bug72463_2 test is sending emails on Linux
authorChristoph M. Becker <cmbecker69@gmx.de>
Sat, 19 Oct 2019 10:53:29 +0000 (12:53 +0200)
committerChristoph M. Becker <cmbecker69@gmx.de>
Sat, 19 Oct 2019 10:59:32 +0000 (12:59 +0200)
This test is not supposed to run on non Windows systems; otherwise it
would try to send an email.

NEWS
ext/pcre/tests/bug72463_2.phpt

diff --git a/NEWS b/NEWS
index 88e277b4e88f08e9c4faf9869eebda764adc78bb..5525f6a5770989acdf4a65a32ba05d70c8b3ab07 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -8,6 +8,9 @@ PHP                                                                        NEWS
 - Date:
   . Fixed bug #70153 (\DateInterval incorrectly unserialized). (Maksim Iakunin)
 
+- Testing:
+  . Fixed bug #78684 (PCRE bug72463_2 test is sending emails on Linux). (cmb)
+
 17 Oct 2019, PHP 7.4.0RC4
 
 - Core:
index 9b9ac9bdc59509a58d697ec3d9a46a3e6539c8bb..1baeb0f2a1154f8e29b3826615d859bfeccb4daa 100644 (file)
@@ -1,5 +1,11 @@
 --TEST--
 Bug #72463 mail fails with invalid argument
+--SKIPIF--
+<?php
+if(substr(PHP_OS, 0, 3) != "WIN") {
+       die('skip windows only');
+}
+?>
 --INI--
 SMTP=non.existent.smtp.server
 --FILE--