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

Disable an assert which (as it turns out) is not always true. Ticket #615. (CVS 1269)

FossilOrigin-Name: 2773c1d384b750eee037e6ccc61bc56b5204d690
This commit is contained in:
drh
2004-02-25 02:20:41 +00:00
parent cd44690ad0
commit 946966f2a1
4 changed files with 28 additions and 11 deletions

View File

@ -11,7 +11,7 @@
# This file implements regression tests for SQLite library. The
# focus of this script is page cache subsystem.
#
# $Id: pager.test,v 1.13 2003/02/16 19:13:37 drh Exp $
# $Id: pager.test,v 1.14 2004/02/25 02:20:42 drh Exp $
set testdir [file dirname $argv0]
@ -406,4 +406,18 @@ do_test pager-4.99 {
} ;# end if( not mem: and has pager_open command );
# Ticket #615: an assertion fault inside the pager. It is a benign
# fault, but we might as well test for it.
#
do_test pager-5.1 {
sqlite db test.db
execsql {
BEGIN;
CREATE TABLE t1(x);
PRAGMA synchronous=off;
COMMIT;
}
} {}
finish_test