2db0bbc24b
Also remove error messages for obsolete error codes SQLITE_INTERNAL, SQLITE_NOTFOUND, and SQLITE_TOOBIG. (CVS 2580) FossilOrigin-Name: fa7403c7d9948cc4a6c6ed00a614e3d6a3682e78
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.2 2005/08/11 02:10:19 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 or disk is full}}
|
|
do_test diskfull-1.3 {
|
|
set sqlite_diskfull_pending 1
|
|
catchsql {
|
|
DELETE FROM t1;
|
|
}
|
|
} {1 {database or disk is full}}
|
|
|
|
finish_test
|