mirror of
https://github.com/MariaDB/server.git
synced 2025-02-02 12:01:42 +01:00
fc5da105ef
git-svn-id: file:///svn/toku/tokudb@34897 c7de825b-a66e-492c-adef-691d508d4ae1
95 lines
2.3 KiB
C
95 lines
2.3 KiB
C
/* -*- mode: C; c-basic-offset: 4 -*- */
|
|
#ident "$Id$"
|
|
#ident "Copyright (c) 2007-2011 Tokutek Inc. All rights reserved."
|
|
#ident "The technology is licensed by the Massachusetts Institute of Technology, Rutgers State University of New Jersey, and the Research Foundation of State University of New York at Stony Brook under United States of America Serial No. 11/760379 and to the patents and/or patent applications resulting from it."
|
|
|
|
#include "test.h"
|
|
|
|
#include <stdlib.h>
|
|
#include "sort.h"
|
|
|
|
const int MAX_NUM = 0x0fffffffL;
|
|
int MAGIC_EXTRA = 0xd3adb00f;
|
|
|
|
static int
|
|
int_cmp(void *ve, const void *va, const void *vb)
|
|
{
|
|
int *e = ve;
|
|
assert(e);
|
|
assert(*e == MAGIC_EXTRA);
|
|
const int *a = va, *b = vb;
|
|
assert(*a < MAX_NUM);
|
|
assert(*b < MAX_NUM);
|
|
return (*a > *b) - (*a < *b);
|
|
}
|
|
|
|
static void
|
|
check_int_array(int a[], int nelts)
|
|
{
|
|
assert(a[0] < MAX_NUM);
|
|
for (int i = 1; i < nelts; ++i) {
|
|
assert(a[i] < MAX_NUM);
|
|
assert(a[i-1] <= a[i]);
|
|
}
|
|
}
|
|
|
|
static void
|
|
zero_array_test(void)
|
|
{
|
|
mergesort_r(NULL, 0, sizeof(int), NULL, int_cmp);
|
|
}
|
|
|
|
static void
|
|
dup_array_test(int nelts)
|
|
{
|
|
int *MALLOC_N(nelts, a);
|
|
for (int i = 0; i < nelts; ++i) {
|
|
a[i] = 1;
|
|
}
|
|
mergesort_r(a, nelts, sizeof a[0], &MAGIC_EXTRA, int_cmp);
|
|
check_int_array(a, nelts);
|
|
toku_free(a);
|
|
}
|
|
|
|
static void
|
|
already_sorted_test(int nelts)
|
|
{
|
|
int *MALLOC_N(nelts, a);
|
|
for (int i = 0; i < nelts; ++i) {
|
|
a[i] = i;
|
|
}
|
|
mergesort_r(a, nelts, sizeof a[0], &MAGIC_EXTRA, int_cmp);
|
|
check_int_array(a, nelts);
|
|
toku_free(a);
|
|
}
|
|
|
|
static void
|
|
random_array_test(int nelts)
|
|
{
|
|
int *MALLOC_N(nelts, a);
|
|
for (int i = 0; i < nelts; ++i) {
|
|
a[i] = rand() % MAX_NUM;
|
|
}
|
|
mergesort_r(a, nelts, sizeof a[0], &MAGIC_EXTRA, int_cmp);
|
|
check_int_array(a, nelts);
|
|
toku_free(a);
|
|
}
|
|
|
|
int
|
|
test_main(int argc __attribute__((__unused__)), const char *argv[] __attribute__((__unused__)))
|
|
{
|
|
zero_array_test();
|
|
random_array_test(10);
|
|
random_array_test(1000);
|
|
random_array_test(10001);
|
|
random_array_test(10000000);
|
|
dup_array_test(10);
|
|
dup_array_test(1000);
|
|
dup_array_test(10001);
|
|
dup_array_test(10000000);
|
|
already_sorted_test(10);
|
|
already_sorted_test(1000);
|
|
already_sorted_test(10001);
|
|
already_sorted_test(10000000);
|
|
return 0;
|
|
}
|