about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2024-04-25 21:31:42 +0000
committerEric Wong <e@80x24.org>2024-04-28 17:05:26 +0000
commita2dacd507bd72fc2fae20c8ea628794b1bf112ec (patch)
treea7258327bc51c8418e0496290aabd322973e4935
parent817eb9dfebfbbbe8af319cedc2b85c89655b0095 (diff)
downloadpublic-inbox-a2dacd507bd72fc2fae20c8ea628794b1bf112ec.tar.gz
Technically it's not required, but -compact blindly requires
DBD::SQLite at the moment since it was designed for inboxes in
mind.  Furthermore, cindex isn't useful at the moment without
inboxes to associate with, and inboxes can't be indexed without
SQLite.
-rw-r--r--t/cindex.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/cindex.t b/t/cindex.t
index 90236287..0ae0b2b4 100644
--- a/t/cindex.t
+++ b/t/cindex.t
@@ -6,7 +6,7 @@ use PublicInbox::TestCommon;
 use Cwd qw(getcwd);
 use List::Util qw(sum);
 use autodie qw(close mkdir open rename);
-require_mods(qw(json Xapian +SCM_RIGHTS));
+require_mods(qw(json Xapian +SCM_RIGHTS DBD::SQLite));
 use_ok 'PublicInbox::CodeSearchIdx';
 use PublicInbox::Import;
 my ($tmp, $for_destroy) = tmpdir();