From 0ced6cfc8fa807f0d7c2e5b138f1a8c9d257ae06 Mon Sep 17 00:00:00 2001 From: Christopher Swenson Date: Mon, 12 Feb 2024 17:34:26 -0800 Subject: [PATCH] No random --- stresstest.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stresstest.c b/stresstest.c index c0fe4a6..cdc44a5 100644 --- a/stresstest.c +++ b/stresstest.c @@ -132,7 +132,7 @@ static void fill_random(int64_t *dst, const int size) { int i; for (i = 0; i < size; i++) { - dst[i] = lrand48(); + //dst[i] = lrand48(); } } @@ -276,7 +276,7 @@ int run_tests(int64_t *sizes, int sizes_cnt, int type) { double usec1, usec2, diff; int64_t * dst = (int64_t *)malloc(MAXSIZE * sizeof(int64_t)); printf("-------\nRunning tests with %s:\n-------\n", test_names[type]); - //TEST_STDLIB(qsort); + TEST_STDLIB(qsort); // #if !defined(__linux__) && !defined(__CYGWIN__) && !defined(_WIN32) // TEST_STDLIB(heapsort); // TEST_STDLIB(mergesort);