Reduce random transactions and iterations on test-lots.cpp.

No point in generating 320 transactions or running the test 10 times
for a simple does-it-crash test. Do it once with 32 transactions so
it takes less than one second instead of 16.
This commit is contained in:
John Ralls 2020-08-16 16:03:03 -07:00
parent f662935990
commit 6d44d0675e

View File

@ -38,8 +38,8 @@ extern "C"
#include "Transaction.h"
}
static gint transaction_num = 320;
static gint max_iterate = 10;
static gint transaction_num = 32;
static gint max_iterate = 1;
static void
run_test (void)