2 * Copyright (C) 2011 Red Hat, Inc.
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
21 int_compare_data (gconstpointer p1
, gconstpointer p2
, gpointer data
)
30 test_sort_basic (void)
35 data
= g_malloc (10000 * sizeof (int));
36 for (i
= 0; i
< 10000; i
++)
38 data
[i
] = g_random_int_range (0, 10000);
41 g_qsort_with_data (data
, 10000, sizeof (int), int_compare_data
, NULL
);
43 for (i
= 1; i
< 10000; i
++)
44 g_assert_cmpint (data
[i
-1], <=, data
[i
]);
61 item_compare_data (gconstpointer p1
, gconstpointer p2
, gpointer data
)
63 const SortItem
*i1
= p1
;
64 const SortItem
*i2
= p2
;
66 return i1
->val
- i2
->val
;
70 test_sort_stable (void)
75 data
= g_malloc (10000 * sizeof (SortItem
));
76 for (i
= 0; i
< 10000; i
++)
78 data
[i
].val
= g_random_int_range (0, 10000);
82 g_qsort_with_data (data
, 10000, sizeof (SortItem
), item_compare_data
, NULL
);
84 for (i
= 1; i
< 10000; i
++)
86 g_assert_cmpint (data
[i
-1].val
, <=, data
[i
].val
);
87 if (data
[i
-1].val
== data
[i
].val
)
88 g_assert_cmpint (data
[i
-1].i
, <, data
[i
].i
);
99 data
= g_malloc (10000 * sizeof (BigItem
));
100 for (i
= 0; i
< 10000; i
++)
102 data
[i
].val
= g_random_int_range (0, 10000);
106 g_qsort_with_data (data
, 10000, sizeof (BigItem
), item_compare_data
, NULL
);
108 for (i
= 1; i
< 10000; i
++)
110 g_assert_cmpint (data
[i
-1].val
, <=, data
[i
].val
);
111 if (data
[i
-1].val
== data
[i
].val
)
112 g_assert_cmpint (data
[i
-1].i
, <, data
[i
].i
);
118 main (int argc
, char *argv
[])
120 g_test_init (&argc
, &argv
, NULL
);
122 g_test_add_func ("/sort/basic", test_sort_basic
);
123 g_test_add_func ("/sort/stable", test_sort_stable
);
124 g_test_add_func ("/sort/big", test_sort_big
);
126 return g_test_run ();