aboutsummaryrefslogtreecommitdiffstats
path: root/lib/test_sort.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/test_sort.c')
-rw-r--r--lib/test_sort.c44
1 files changed, 44 insertions, 0 deletions
diff --git a/lib/test_sort.c b/lib/test_sort.c
new file mode 100644
index 000000000000..4db3911db50a
--- /dev/null
+++ b/lib/test_sort.c
@@ -0,0 +1,44 @@
1#include <linux/sort.h>
2#include <linux/slab.h>
3#include <linux/init.h>
4
5/*
6 * A simple boot-time regression test
7 * License: GPL
8 */
9
10#define TEST_LEN 1000
11
12static int __init cmpint(const void *a, const void *b)
13{
14 return *(int *)a - *(int *)b;
15}
16
17static int __init test_sort_init(void)
18{
19 int *a, i, r = 1, err = -ENOMEM;
20
21 a = kmalloc_array(TEST_LEN, sizeof(*a), GFP_KERNEL);
22 if (!a)
23 return err;
24
25 for (i = 0; i < TEST_LEN; i++) {
26 r = (r * 725861) % 6599;
27 a[i] = r;
28 }
29
30 sort(a, TEST_LEN, sizeof(*a), cmpint, NULL);
31
32 err = -EINVAL;
33 for (i = 0; i < TEST_LEN-1; i++)
34 if (a[i] > a[i+1]) {
35 pr_err("test has failed\n");
36 goto exit;
37 }
38 err = 0;
39 pr_info("test passed\n");
40exit:
41 kfree(a);
42 return err;
43}
44subsys_initcall(test_sort_init);