Skip to content

Commit 0ced6cf

Browse files
committed
No random
1 parent fdd9e48 commit 0ced6cf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

stresstest.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ static void fill_random(int64_t *dst, const int size) {
132132
int i;
133133

134134
for (i = 0; i < size; i++) {
135-
dst[i] = lrand48();
135+
//dst[i] = lrand48();
136136
}
137137
}
138138

@@ -276,7 +276,7 @@ int run_tests(int64_t *sizes, int sizes_cnt, int type) {
276276
double usec1, usec2, diff;
277277
int64_t * dst = (int64_t *)malloc(MAXSIZE * sizeof(int64_t));
278278
printf("-------\nRunning tests with %s:\n-------\n", test_names[type]);
279-
//TEST_STDLIB(qsort);
279+
TEST_STDLIB(qsort);
280280
// #if !defined(__linux__) && !defined(__CYGWIN__) && !defined(_WIN32)
281281
// TEST_STDLIB(heapsort);
282282
// TEST_STDLIB(mergesort);

0 commit comments

Comments
 (0)