From 511aab6f000f85a4b03b70f841870eff256fbf08 Mon Sep 17 00:00:00 2001 From: Rob Holland Date: Sun, 11 May 2008 22:55:18 +0100 Subject: Up the busy_timeout test time so that systems on which SQLite has reverted to using sleep instead of usleep can still pass the tests. --- test/tc_integration.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/tc_integration.rb b/test/tc_integration.rb index a9a569a..cacaee7 100644 --- a/test/tc_integration.rb +++ b/test/tc_integration.rb @@ -581,7 +581,7 @@ module Integration end define_method( "test_busy_timeout" ) do - @db.busy_timeout 300 + @db.busy_timeout 1000 busy = Mutex.new busy.lock @@ -605,7 +605,7 @@ module Integration busy.unlock t.join - assert time.real*1000 >= 300 + assert time.real*1000 >= 1000 end define_method( "test_create_function" ) do -- cgit