1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-30 19:03:16 +03:00

Fix minor problems on various tests. This is a snapshot prior to possible

major changes in order to fix the sqlite3AbortOtherActiveVdbes problem. (CVS 4327)

FossilOrigin-Name: 35cb63ecfd9d8ca7304aae1b150ee5d1c3498bde
This commit is contained in:
drh
2007-08-29 19:15:08 +00:00
parent df12a9bca4
commit 107b25f1bd
5 changed files with 16 additions and 17 deletions

View File

@ -12,7 +12,7 @@
#
# This file tests malloc failures in concert with fuzzy SQL generation.
#
# $Id: fuzz_malloc.test,v 1.6 2007/08/25 13:37:49 danielk1977 Exp $
# $Id: fuzz_malloc.test,v 1.7 2007/08/29 19:15:09 drh Exp $
set testdir [file dirname $argv0]
source $testdir/tester.tcl
@ -40,7 +40,7 @@ proc do_fuzzy_malloc_test {testname args} {
set ::fuzzyopts(-sqlprep) {}
array set ::fuzzyopts $args
sqlite3_memdebug_fail -1 0
sqlite3_memdebug_fail -1 -repeat 0
db close
file delete test.db test.db-journal
sqlite3 db test.db
@ -85,5 +85,5 @@ do_fuzzy_malloc_test fuzzy_malloc-3 \
-template {[Select]} \
-sqlprep $::SQLPREP
sqlite3_memdebug_fail -1 0
sqlite3_memdebug_fail -1
finish_test