commit: 4fe00673a825c0bf1476a9cde5ad35dd288e86bd
Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 14 00:54:37 2026 +0000
Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Sat Mar 14 00:54:37 2026 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4fe00673
dev-db/sqlite: Fix potential issue in src_test in 3.51.3
The test suite can sometimes fail if the tcl extension is not available
and the build systems fails to build one (Cannot find a working instance of the
SQLite tcl extension.
Run "make tclextension" or "make testfixture" and try again...). Make
the tclextensions as per suggestion before invoking tests to prevent
this from happening.
Reported-by: Sam James <sam <AT> gentoo.org>
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
dev-db/sqlite/sqlite-3.51.3.ebuild | 1 +
1 file changed, 1 insertion(+)
diff --git a/dev-db/sqlite/sqlite-3.51.3.ebuild
b/dev-db/sqlite/sqlite-3.51.3.ebuild
index 4a37b9521eac..92381ac67476 100644
--- a/dev-db/sqlite/sqlite-3.51.3.ebuild
+++ b/dev-db/sqlite/sqlite-3.51.3.ebuild
@@ -371,6 +371,7 @@ multilib_src_test() {
addpredict "/test.db"
addpredict "/ÿ.db"
+ emake tclextension
emake -Onone $(usex test-full 'xdevtest' 'test')
}