1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-29 08:01:23 +03:00

Do not attempt to build the code in ext/expert/sqlite3expert.c if

SQLITE_OMIT_VIRTUALTABLE is defined.

FossilOrigin-Name: ba967ad2e38590fe2a51e814a087140089be5e6a06a795a958e70a8a47f6350f
This commit is contained in:
dan
2018-01-09 14:30:49 +00:00
parent 8ee5d0fc05
commit f87ae41f52
5 changed files with 25 additions and 11 deletions

View File

@ -23,6 +23,11 @@ if {![info exists testdir]} {
source $testdir/tester.tcl
set testprefix expert1
if {[info commands sqlite3_expert_new]==""} {
finish_test
return
}
set CLI [test_binary_name sqlite3]
set CMD [test_binary_name sqlite3_expert]