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

Change mem5.c so that the minimum allocation size is runtime configurable. (CVS 5320)

FossilOrigin-Name: 4f95f4cdf77e134fab42148e10198c7b008d4ae6
This commit is contained in:
danielk1977
2008-06-27 13:27:03 +00:00
parent 6fccc35a91
commit 5099be5e85
7 changed files with 211 additions and 121 deletions

View File

@ -9,7 +9,7 @@
#
#***********************************************************************
#
# $Id: permutations.test,v 1.7 2008/06/25 14:57:54 danielk1977 Exp $
# $Id: permutations.test,v 1.8 2008/06/27 13:27:04 danielk1977 Exp $
set testdir [file dirname $argv0]
source $testdir/tester.tcl
@ -367,7 +367,27 @@ ifcapable mem5 {
catch {db close}
sqlite3_reset_auto_extension
sqlite3_shutdown
sqlite3_config_memsys5 1000000
sqlite3_config_heap 1000000 64
install_malloc_faultsim 1
sqlite3_initialize
autoinstall_test_functions
} -shutdown {
catch {db close}
sqlite3_reset_auto_extension
sqlite3_shutdown
sqlite3_config_memsys5 0
install_malloc_faultsim 1
sqlite3_initialize
}
run_tests "memsys5-2" -description {
Run tests using the allocator in mem5.c in a different configuration.
} -include { select1.test
} -initialize {
catch {db close}
sqlite3_reset_auto_extension
sqlite3_shutdown
sqlite3_config_heap 250000 16
install_malloc_faultsim 1
sqlite3_initialize
autoinstall_test_functions