41 lines
1.0 KiB
Plaintext
41 lines
1.0 KiB
Plaintext
|
# 2001 October 12
|
||
|
#
|
||
|
# 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 for correct handling of disk full
|
||
|
# errors.
|
||
|
#
|
||
|
# $Id: diskfull.test,v 1.1 2004/10/01 14:38:03 drh Exp $
|
||
|
|
||
|
set testdir [file dirname $argv0]
|
||
|
source $testdir/tester.tcl
|
||
|
|
||
|
do_test diskfull-1.1 {
|
||
|
execsql {
|
||
|
CREATE TABLE t1(x);
|
||
|
INSERT INTO t1 VALUES(randstr(1000,1000));
|
||
|
INSERT INTO t1 SELECT * FROM t1;
|
||
|
}
|
||
|
} {}
|
||
|
do_test diskfull-1.2 {
|
||
|
set sqlite_diskfull_pending 1
|
||
|
catchsql {
|
||
|
INSERT INTO t1 SELECT * FROM t1;
|
||
|
}
|
||
|
} {1 {database is full}}
|
||
|
do_test diskfull-1.3 {
|
||
|
set sqlite_diskfull_pending 1
|
||
|
catchsql {
|
||
|
DELETE FROM t1;
|
||
|
}
|
||
|
} {1 {database is full}}
|
||
|
|
||
|
finish_test
|