1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-27 20:41:58 +03:00

Add comments for the various debug levels. When debugging, disable optimizations. Prevent the win32lock tests from spinning forever.

FossilOrigin-Name: 401859236b0d97bde82b11f32efce6eb9d490941
This commit is contained in:
mistachkin
2011-08-25 04:09:12 +00:00
parent 753c544495
commit f2d25f2005
4 changed files with 34 additions and 13 deletions

View File

@ -69,6 +69,10 @@ while {1} {
}
if {[llength $win32_lock_ok] && [llength $win32_lock_error]} break
incr delay1 25
if {$delay1 > 12500} {
puts "Timed out waiting for \"ok\" and \"error\" results."
break
}
sqlite3_sleep 10
}
@ -113,6 +117,10 @@ while {1} {
}
if {[llength $win32_lock_ok] && [llength $win32_lock_error]} break
incr delay1 1
if {$delay1 > 500} {
puts "Timed out waiting for \"ok\" and \"error\" results."
break
}
sqlite3_sleep 10
}