sl@0: /* -*- mode: C; c-file-style: "gnu" -*- */ sl@0: /* dbus-test.c Program to run all tests sl@0: * sl@0: * Copyright (C) 2002, 2003 Red Hat Inc. sl@0: * Portion Copyright © 2008 Nokia Corporation and/or its subsidiary(-ies). All rights reserved. sl@0: * Licensed under the Academic Free License version 2.1 sl@0: * sl@0: * This program is free software; you can redistribute it and/or modify sl@0: * it under the terms of the GNU General Public License as published by sl@0: * the Free Software Foundation; either version 2 of the License, or sl@0: * (at your option) any later version. sl@0: * sl@0: * This program is distributed in the hope that it will be useful, sl@0: * but WITHOUT ANY WARRANTY; without even the implied warranty of sl@0: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the sl@0: * GNU General Public License for more details. sl@0: * sl@0: * You should have received a copy of the GNU General Public License sl@0: * along with this program; if not, write to the Free Software sl@0: * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA sl@0: * sl@0: */ sl@0: sl@0: #ifndef __SYMBIAN32__ sl@0: #include sl@0: #else sl@0: #include "config.h" sl@0: #endif //__SYMBIAN32__ sl@0: #include "dbus-gtest.h" sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: #ifdef __SYMBIAN32__ sl@0: #define LOG_FILE "c:\\logs\\dbus_gtest_main_log1.txt" sl@0: #include "std_log_result.h" sl@0: #define LOG_FILENAME_LINE __FILE__, __LINE__ sl@0: sl@0: void create_xml(int result) sl@0: { sl@0: if(result) sl@0: assert_failed = 1; sl@0: sl@0: testResultXml("dbus_gtest_main"); sl@0: close_log_file(); sl@0: } sl@0: #endif sl@0: sl@0: sl@0: #ifdef DBUS_BUILD_TESTS sl@0: static void sl@0: die (const char *failure) sl@0: { sl@0: fprintf (stderr, "Unit test failed: %s\n", failure); sl@0: #ifdef __SYMBIAN32__ sl@0: std_log(LOG_FILENAME_LINE, "Unit test failed: %s\n", failure); sl@0: create_xml(1); sl@0: #endif sl@0: exit (1); sl@0: } sl@0: #endif /* DBUS_BUILD_TESTS */ sl@0: sl@0: /** sl@0: * An exported symbol to be run in order to execute sl@0: * unit tests. Should not be used by sl@0: * any app other than our test app, this symbol sl@0: * won't exist in some builds of the library. sl@0: * (with --enable-tests=no) sl@0: * sl@0: * @param test_data_dir the directory with test data (test/data normally) sl@0: */ sl@0: #ifdef __SYMBIAN32__ sl@0: EXPORT_C sl@0: #endif sl@0: void sl@0: dbus_glib_internal_do_not_use_run_tests (const char *test_data_dir) sl@0: { sl@0: #ifdef DBUS_BUILD_TESTS sl@0: if (test_data_dir == NULL) sl@0: test_data_dir = g_getenv ("DBUS_TEST_DATA"); sl@0: sl@0: if (test_data_dir != NULL) sl@0: #ifdef __SYMBIAN32__ sl@0: { sl@0: #endif sl@0: printf ("Test data in %s\n", test_data_dir); sl@0: #ifdef __SYMBIAN32__ sl@0: std_log(LOG_FILENAME_LINE, "Test data in %s\n", test_data_dir); sl@0: } sl@0: #endif sl@0: else sl@0: #ifdef __SYMBIAN32__ sl@0: { sl@0: #endif sl@0: printf ("No test data!\n"); sl@0: #ifdef __SYMBIAN32__ sl@0: std_log(LOG_FILENAME_LINE, "No test data!\n"); sl@0: } sl@0: #endif sl@0: sl@0: g_type_init (); sl@0: sl@0: printf ("%s: running GValue util tests\n", "dbus-glib-test"); sl@0: #ifdef __SYMBIAN32__ sl@0: std_log(LOG_FILENAME_LINE, "%s: running GValue util tests\n", "dbus-glib-test"); sl@0: #endif sl@0: if (!_dbus_gvalue_utils_test (test_data_dir)) sl@0: die ("gvalue utils"); sl@0: sl@0: printf ("%s: running GValue tests\n", "dbus-glib-test"); sl@0: #ifdef __SYMBIAN32__ sl@0: std_log(LOG_FILENAME_LINE, "%s: running GValue tests\n", "dbus-glib-test"); sl@0: #endif sl@0: if (!_dbus_gvalue_test (test_data_dir)) sl@0: die ("gvalue utils"); sl@0: sl@0: printf ("%s: running glib tests\n", "dbus-glib-test"); sl@0: #ifdef __SYMBIAN32__ sl@0: std_log(LOG_FILENAME_LINE, "%s: running glib tests\n", "dbus-glib-test"); sl@0: #endif sl@0: if (!_dbus_glib_test (test_data_dir)) sl@0: die ("glib"); sl@0: sl@0: printf ("%s: running utils tests\n", "dbus-glib-test"); sl@0: #ifdef __SYMBIAN32__ sl@0: std_log(LOG_FILENAME_LINE, "%s: running utils tests\n", "dbus-glib-test"); sl@0: #endif sl@0: if (!_dbus_gutils_test (test_data_dir)) sl@0: die ("gutils"); sl@0: sl@0: printf ("%s: running mainloop integration tests\n", "dbus-glib-test"); sl@0: #ifdef __SYMBIAN32__ sl@0: std_log(LOG_FILENAME_LINE, "%s: running mainloop integration tests\n", "dbus-glib-test"); sl@0: #endif sl@0: if (!_dbus_gmain_test (test_data_dir)) sl@0: die ("gmain"); sl@0: sl@0: printf ("%s: running GObject tests\n", "dbus-glib-test"); sl@0: #ifdef __SYMBIAN32__ sl@0: std_log(LOG_FILENAME_LINE, "%s: running GObject tests\n", "dbus-glib-test"); sl@0: #endif sl@0: if (!_dbus_gobject_test (test_data_dir)) sl@0: die ("gobject"); sl@0: sl@0: printf ("%s: completed successfully\n", "dbus-glib-test"); sl@0: #ifdef __SYMBIAN32__ sl@0: std_log(LOG_FILENAME_LINE, "%s: completed successfully\n", "dbus-glib-test"); sl@0: sl@0: create_xml(0); sl@0: #endif sl@0: #else sl@0: printf ("Not compiled with unit tests, not running any\n"); sl@0: #ifdef __SYMBIAN32__ sl@0: std_log(LOG_FILENAME_LINE, "Not compiled with unit tests, not running any\n"); sl@0: #endif sl@0: #endif sl@0: } sl@0: sl@0: