From c27b9625122848d76b0c4b86cabb6e684b7d026c Mon Sep 17 00:00:00 2001 From: sueloverso Date: Tue, 31 Oct 2017 15:33:16 -0400 Subject: WT-3714 Make the data ranges easier to view. (#3773) --- test/csuite/random_abort/main.c | 2 +- test/csuite/timestamp_abort/main.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'test') diff --git a/test/csuite/random_abort/main.c b/test/csuite/random_abort/main.c index b75ffba3c34..ad49f01dde5 100644 --- a/test/csuite/random_abort/main.c +++ b/test/csuite/random_abort/main.c @@ -189,7 +189,7 @@ fill_db(uint32_t nth) printf("Create %" PRIu32 " writer threads\n", nth); for (i = 0; i < nth; ++i) { td[i].conn = conn; - td[i].start = (UINT64_MAX / nth) * i; + td[i].start = WT_BILLION * (uint64_t)i; td[i].id = i; testutil_check(__wt_thread_create( NULL, &thr[i], thread_run, &td[i])); diff --git a/test/csuite/timestamp_abort/main.c b/test/csuite/timestamp_abort/main.c index 8e143c3cf12..aeca0825da3 100644 --- a/test/csuite/timestamp_abort/main.c +++ b/test/csuite/timestamp_abort/main.c @@ -406,7 +406,7 @@ run_workload(uint32_t nth) printf("Create %" PRIu32 " writer threads\n", nth); for (i = 0; i < nth; ++i) { td[i].conn = conn; - td[i].start = (UINT64_MAX / nth) * i; + td[i].start = WT_BILLION * (uint64_t)i; td[i].info = i; testutil_check(__wt_thread_create( NULL, &thr[i], thread_run, &td[i])); -- cgit v1.2.1