2003-09-03 Havoc Pennington <hp@pobox.com>
[platform/upstream/dbus.git] / glib / dbus-glib-tool.c
1 /* -*- mode: C; c-file-style: "gnu" -*- */
2 /* dbus-compiler-main.c main() for GLib stubs/skels generator
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 "dbus-gidl.h"
25 #include <locale.h>
26
27 #ifdef DBUS_BUILD_TESTS
28 static void run_all_tests (const char *test_data_dir);
29 #endif
30
31 int
32 main (int argc, char **argv)
33 {
34   setlocale(LC_ALL, "");
35
36   return 0;
37 }
38
39 #ifdef DBUS_BUILD_TESTS
40 static void
41 test_die (const char *failure)
42 {
43   fprintf (stderr, "Unit test failed: %s\n", failure);
44   exit (1);
45 }
46
47 static void
48 run_all_tests (const char *test_data_dir)
49 {
50   if (test_data_dir == NULL)
51     test_data_dir = _dbus_getenv ("DBUS_TEST_DATA");
52
53   if (test_data_dir != NULL)
54     printf ("Test data in %s\n", test_data_dir);
55   else
56     printf ("No test data!\n");
57
58   printf ("%s: running gtool tests\n", "dbus-glib-tool");
59   if (!_dbus_gtool_test (test_data_dir))
60     test_die ("gtool");
61
62   printf ("%s: completed successfully\n", "dbus-glib-test");
63 }
64
65 /**
66  * @ingroup DBusGTool
67  * Unit test for GLib utility tool
68  * @returns #TRUE on success.
69  */
70 dbus_bool_t
71 _dbus_gtool_test (const char *test_data_dir)
72 {
73
74   return TRUE;
75 }
76
77 #endif /* DBUS_BUILD_TESTS */