diff options
Diffstat (limited to 'test/fuzz_malloc.test')
-rw-r--r-- | test/fuzz_malloc.test | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/test/fuzz_malloc.test b/test/fuzz_malloc.test index 7f4232398..30cdc50ae 100644 --- a/test/fuzz_malloc.test +++ b/test/fuzz_malloc.test @@ -12,7 +12,7 @@ # # This file tests malloc failures in concert with fuzzy SQL generation. # -# $Id: fuzz_malloc.test,v 1.4 2007/06/15 17:03:15 drh Exp $ +# $Id: fuzz_malloc.test,v 1.5 2007/06/18 12:22:43 drh Exp $ set testdir [file dirname $argv0] source $testdir/tester.tcl @@ -28,7 +28,13 @@ if {[info command sqlite_malloc_stat]==""} { source $testdir/fuzz_common.tcl source $testdir/malloc_common.tcl -set ::REPEATS 40 +if {[info exists ISQUICK]} { + set ::REPEATS 20 +} elseif {[info exists SOAKTEST]} { + set ::REPEATS 100 +} else { + set ::REPEATS 40 +} # # Usage: do_fuzzy_malloc_test <testname> ?<options>? |