Update contrib.
1 /* Portion Copyright © 2008-09 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.*/
2 #undef G_DISABLE_ASSERT
9 #include "mrt2_glib2_test.h"
10 #endif /*__SYMBIAN32__*/
18 sort (gconstpointer a, gconstpointer b, gpointer user_data)
20 return *(guint32*)a < *(guint32*)b ? -1 : 1;
29 g_log_set_handler (NULL, G_LOG_FLAG_FATAL| G_LOG_FLAG_RECURSION | G_LOG_LEVEL_CRITICAL | G_LOG_LEVEL_WARNING | G_LOG_LEVEL_MESSAGE | G_LOG_LEVEL_INFO | G_LOG_LEVEL_DEBUG, &mrtLogHandler, NULL);
30 g_set_print_handler(mrtPrintHandler);
31 #endif /*__SYMBIAN32__*/
34 for (i = 0; i < SIZE; i++)
35 array[i] = g_random_int ();
37 g_qsort_with_data (array, SIZE, sizeof (guint32), sort, NULL);
39 for (i = 0; i < SIZE - 1; i++)
40 g_assert (array[i] <= array[i+1]);
42 /* 0 elemenents is a valid case */
43 g_qsort_with_data (array, 0, sizeof (guint32), sort, NULL);
46 testResultXml("qsort-test");