You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spamassassin.apache.org by he...@apache.org on 2022/04/25 05:41:18 UTC

svn commit: r1900249 - /spamassassin/trunk/t/all_modules.t

Author: hege
Date: Mon Apr 25 05:41:18 2022
New Revision: 1900249

URL: http://svn.apache.org/viewvc?rev=1900249&view=rev
Log:
Bug 7979 - tests fail if Mail::DMARC is not installed

Modified:
    spamassassin/trunk/t/all_modules.t

Modified: spamassassin/trunk/t/all_modules.t
URL: http://svn.apache.org/viewvc/spamassassin/trunk/t/all_modules.t?rev=1900249&r1=1900248&r2=1900249&view=diff
==============================================================================
--- spamassassin/trunk/t/all_modules.t (original)
+++ spamassassin/trunk/t/all_modules.t Mon Apr 25 05:41:18 2022
@@ -87,10 +87,10 @@ tstprefs("
 
 if (conf_bool('run_net_tests')) {
     # sometimes trips on URIBL_BLOCKED, ignore..
-    # also ignore BSD::Resource not installed
-    sarun ("-D -t < data/nice/001 2>&1 | grep -vE '(dns_block_rule|ResourceLimits not used)'", \&patterns_run_cb);
+    # also ignore BSD::Resource, Mail::DMARC not installed
+    sarun ("-D -t < data/nice/001 2>&1 | grep -vE '(dns_block_rule|ResourceLimits not used|DMARC not supported)'", \&patterns_run_cb);
     ok_all_patterns();
 } else {
-    sarun ("-D -L -t < data/nice/001 2>&1 | grep -vE '(ResourceLimits not used)'", \&patterns_run_cb);
+    sarun ("-D -L -t < data/nice/001 2>&1 | grep -vE '(ResourceLimits not used|DMARC not supported)'", \&patterns_run_cb);
     ok_all_patterns();
 }