1 /* -*- mode: C; c-file-style: "gnu" -*- */
2 /* test-main.c main() for make check
4 * Copyright (C) 2003 Red Hat, Inc.
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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
28 #include <dbus/dbus-string.h>
29 #include <dbus/dbus-sysdeps.h>
30 #include <dbus/dbus-internals.h>
32 #ifdef DBUS_ENABLE_EMBEDDED_TESTS
34 die (const char *failure)
36 fprintf (stderr, "Unit test failed: %s\n", failure);
41 check_memleaks (const char *name)
45 printf ("%s: checking for memleaks\n", name);
46 if (_dbus_get_malloc_blocks_outstanding () != 0)
48 _dbus_warn ("%d dbus_malloc blocks were not freed\n",
49 _dbus_get_malloc_blocks_outstanding ());
53 #endif /* DBUS_ENABLE_EMBEDDED_TESTS */
60 static char *progname = "";
64 check_memleaks (progname);
68 main (int argc, char **argv)
70 #ifdef DBUS_ENABLE_EMBEDDED_TESTS
72 DBusString test_data_dir;
79 dir = _dbus_getenv ("DBUS_TEST_DATA");
83 fprintf (stderr, "Must specify test data directory as argv[1] or in DBUS_TEST_DATA env variable\n");
87 _dbus_string_init_const (&test_data_dir, dir);
89 if (!_dbus_threads_init_debug ())
90 die ("initializing debug threads");
93 printf ("%s: Running config file parser (trivial) test\n", argv[0]);
94 if (!bus_config_parser_trivial_test (&test_data_dir))
98 printf ("%s: Success\n", argv[0]);
101 #else /* DBUS_ENABLE_EMBEDDED_TESTS */
103 printf ("Not compiled with test support\n");