2003-03-23 Havoc Pennington <hp@pobox.com>
[platform/upstream/dbus.git] / bus / test-main.c
1 /* -*- mode: C; c-file-style: "gnu" -*- */
2 /* test-main.c  main() for make check
3  *
4  * Copyright (C) 2003 Red Hat, Inc.
5  *
6  * Licensed under the Academic Free License version 1.2
7  * 
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.
12  *
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.
17  * 
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
21  *
22  */
23
24 #include "test.h"
25 #include <stdio.h>
26 #include <stdlib.h>
27 #include <dbus/dbus-string.h>
28 #include <dbus/dbus-sysdeps.h>
29 #include <dbus/dbus-internals.h>
30
31 static void
32 die (const char *failure)
33 {
34   fprintf (stderr, "Unit test failed: %s\n", failure);
35   exit (1);
36 }
37
38 int
39 main (int argc, char **argv)
40 {
41 #ifdef DBUS_BUILD_TESTS
42   const char *dir;
43   DBusString test_data_dir;
44
45   if (argc > 1)
46     dir = argv[1];
47   else
48     dir = _dbus_getenv ("DBUS_TEST_DATA");
49
50   if (dir == NULL)
51     dir = "";
52
53   _dbus_string_init_const (&test_data_dir, dir);
54
55   printf ("%s: Running message dispatch test\n", argv[0]);
56   if (!bus_dispatch_test (&test_data_dir))
57     die ("dispatch");
58
59   dbus_shutdown ();
60   
61   printf ("%s: checking for memleaks\n", argv[0]);
62   if (_dbus_get_malloc_blocks_outstanding () != 0)
63     {
64       _dbus_warn ("%d dbus_malloc blocks were not freed\n",
65                   _dbus_get_malloc_blocks_outstanding ());
66       die ("memleaks");
67     }
68   
69   printf ("%s: Success\n", argv[0]);
70   
71   return 0;
72 #else /* DBUS_BUILD_TESTS */
73
74   printf ("Not compiled with test support\n");
75   
76   return 0;
77 #endif
78 }