e04dc88be5
FossilOrigin-Name: 96bef18c1411c3e0348295886f105e1646c46320
26 lines
676 B
Plaintext
26 lines
676 B
Plaintext
# 2010 April 19
|
|
#
|
|
# The author disclaims copyright to this source code. In place of
|
|
# a legal notice, here is a blessing:
|
|
#
|
|
# May you do good and not evil.
|
|
# May you find forgiveness for yourself and forgive others.
|
|
# May you share freely, never taking more than you give.
|
|
#
|
|
#***********************************************************************
|
|
# This file implements regression tests for SQLite library. The
|
|
# focus of this file is testing the operation of the library in
|
|
# "PRAGMA journal_mode=WAL" mode.
|
|
#
|
|
|
|
set testdir [file dirname $argv0]
|
|
source $testdir/tester.tcl
|
|
|
|
do_test walmode-1.1 {
|
|
execsql {
|
|
PRAGMA journal_mode = wal;
|
|
}
|
|
} {wal}
|
|
|
|
finish_test
|