Skip to content

Commit

Permalink
No random
Browse files Browse the repository at this point in the history
  • Loading branch information
swenson committed Feb 13, 2024
1 parent fdd9e48 commit 0ced6cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions stresstest.c
Original file line number Diff line number Diff line change
Expand Up @@ -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();
}
}

Expand Down Expand Up @@ -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);
Expand Down

0 comments on commit 0ced6cf

Please sign in to comment.