From 662311e6ef265e60e37aad2abd57090c64f06c33 Mon Sep 17 00:00:00 2001 From: Sears Russell Date: Sat, 21 Apr 2007 05:48:27 +0000 Subject: [PATCH] Shortened test to prevent timeout on tardis. (It runs fast enough on my laptop; should figure out why tardis performance is so poor...) --- test/lladd/check_bufferManager.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/lladd/check_bufferManager.c b/test/lladd/check_bufferManager.c index 7e272b6..7eaae39 100644 --- a/test/lladd/check_bufferManager.c +++ b/test/lladd/check_bufferManager.c @@ -12,8 +12,8 @@ #define LOG_NAME "check_bufferManager.log" #ifdef LONG_TEST -#define THREAD_COUNT 200 -#define NUM_PAGES (MAX_BUFFER_SIZE * 2) // Otherwise, we run out of disk cache, and it takes forever to complete... +#define THREAD_COUNT 100 +#define NUM_PAGES ((MAX_BUFFER_SIZE * 3)/2) // Otherwise, we run out of disk cache, and it takes forever to complete... #define PAGE_MULT 10 // This tells the system to only use every 10'th page, allowing us to quickly check >2 GB, >4 GB safeness. #define READS_PER_THREAD (NUM_PAGES * 10)