xref: /sqlite-3.40.0/ext/lsm1/test/lsm1_common.tcl (revision 59541d70)
1# 2014 Dec 19
2#
3# The author disclaims copyright to this source code.  In place of
4# a legal notice, here is a blessing:
5#
6#    May you do good and not evil.
7#    May you find forgiveness for yourself and forgive others.
8#    May you share freely, never taking more than you give.
9#
10#***********************************************************************
11#
12
13if {![info exists testdir]} {
14  set testdir [file join [file dirname [info script]] .. .. .. test]
15}
16source $testdir/tester.tcl
17
18# Check if the lsm1 extension has been compiled.
19if {$::tcl_platform(platform) == "windows"} {
20  set lsm1 lsm.dll
21} else {
22  set lsm1 lsm.so
23}
24
25if {[file exists [file join .. $lsm1]]} {
26  proc return_if_no_lsm1 {} {}
27} else {
28  proc return_if_no_lsm1 {} {
29    finish_test
30    return -code return
31  }
32  return
33}
34
35proc load_lsm1_vtab {db} {
36  db enable_load_extension 1
37  db eval {SELECT load_extension('../lsm')}
38}
39