You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spamassassin.apache.org by jm...@apache.org on 2007/06/20 14:22:05 UTC

svn commit: r549082 - /spamassassin/trunk/t/root_spamd_tell.t

Author: jm
Date: Wed Jun 20 05:22:04 2007
New Revision: 549082

URL: http://svn.apache.org/viewvc?view=rev&rev=549082
Log:
SDBM_File is more widely available than DB_File; avoid that requirement

Modified:
    spamassassin/trunk/t/root_spamd_tell.t

Modified: spamassassin/trunk/t/root_spamd_tell.t
URL: http://svn.apache.org/viewvc/spamassassin/trunk/t/root_spamd_tell.t?view=diff&rev=549082&r1=549081&r2=549082
==============================================================================
--- spamassassin/trunk/t/root_spamd_tell.t (original)
+++ spamassassin/trunk/t/root_spamd_tell.t Wed Jun 20 05:22:04 2007
@@ -27,6 +27,11 @@
 # ensure it is writable by all
 use File::Path; mkpath("log/user_state"); chmod 01777, "log/user_state";
 
+# use SDBM so we do not need DB_File
+tstlocalrules ("
+        bayes_store_module Mail::SpamAssassin::BayesStore::SDBM
+");
+
 ok(start_spamd("-L --allow-tell"));
 
 ok(spamcrun("-lx -L ham < data/spam/001", \&patterns_run_cb));