Update contrib.
1 /* -*- mode: C; c-file-style: "gnu" -*- */
2 /* dbus-test.c Program to run all tests
4 * Copyright (C) 2002, 2003 Red Hat Inc.
5 * Portion Copyright © 2008 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.
6 * Licensed under the Academic Free License version 2.1
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
28 #endif //__SYMBIAN32__
29 #include "dbus-gtest.h"
35 #define LOG_FILE "c:\\logs\\dbus_gtest_main_log1.txt"
36 #include "std_log_result.h"
37 #define LOG_FILENAME_LINE __FILE__, __LINE__
39 void create_xml(int result)
44 testResultXml("dbus_gtest_main");
50 #ifdef DBUS_BUILD_TESTS
52 die (const char *failure)
54 fprintf (stderr, "Unit test failed: %s\n", failure);
56 std_log(LOG_FILENAME_LINE, "Unit test failed: %s\n", failure);
61 #endif /* DBUS_BUILD_TESTS */
64 * An exported symbol to be run in order to execute
65 * unit tests. Should not be used by
66 * any app other than our test app, this symbol
67 * won't exist in some builds of the library.
68 * (with --enable-tests=no)
70 * @param test_data_dir the directory with test data (test/data normally)
76 dbus_glib_internal_do_not_use_run_tests (const char *test_data_dir)
78 #ifdef DBUS_BUILD_TESTS
79 if (test_data_dir == NULL)
80 test_data_dir = g_getenv ("DBUS_TEST_DATA");
82 if (test_data_dir != NULL)
86 printf ("Test data in %s\n", test_data_dir);
88 std_log(LOG_FILENAME_LINE, "Test data in %s\n", test_data_dir);
95 printf ("No test data!\n");
97 std_log(LOG_FILENAME_LINE, "No test data!\n");
103 printf ("%s: running GValue util tests\n", "dbus-glib-test");
105 std_log(LOG_FILENAME_LINE, "%s: running GValue util tests\n", "dbus-glib-test");
107 if (!_dbus_gvalue_utils_test (test_data_dir))
108 die ("gvalue utils");
110 printf ("%s: running GValue tests\n", "dbus-glib-test");
112 std_log(LOG_FILENAME_LINE, "%s: running GValue tests\n", "dbus-glib-test");
114 if (!_dbus_gvalue_test (test_data_dir))
115 die ("gvalue utils");
117 printf ("%s: running glib tests\n", "dbus-glib-test");
119 std_log(LOG_FILENAME_LINE, "%s: running glib tests\n", "dbus-glib-test");
121 if (!_dbus_glib_test (test_data_dir))
124 printf ("%s: running utils tests\n", "dbus-glib-test");
126 std_log(LOG_FILENAME_LINE, "%s: running utils tests\n", "dbus-glib-test");
128 if (!_dbus_gutils_test (test_data_dir))
131 printf ("%s: running mainloop integration tests\n", "dbus-glib-test");
133 std_log(LOG_FILENAME_LINE, "%s: running mainloop integration tests\n", "dbus-glib-test");
135 if (!_dbus_gmain_test (test_data_dir))
138 printf ("%s: running GObject tests\n", "dbus-glib-test");
140 std_log(LOG_FILENAME_LINE, "%s: running GObject tests\n", "dbus-glib-test");
142 if (!_dbus_gobject_test (test_data_dir))
145 printf ("%s: completed successfully\n", "dbus-glib-test");
147 std_log(LOG_FILENAME_LINE, "%s: completed successfully\n", "dbus-glib-test");
152 printf ("Not compiled with unit tests, not running any\n");
154 std_log(LOG_FILENAME_LINE, "Not compiled with unit tests, not running any\n");