summaryrefslogtreecommitdiffstats
path: root/glib/dbus-gtest-main.c
diff options
context:
space:
mode:
authorHavoc Pennington <hp@redhat.com>2003-10-17 16:23:19 +0000
committerHavoc Pennington <hp@redhat.com>2003-10-17 16:23:19 +0000
commit8a4d94fe70982690c5fe4580f906b8ca2a95c468 (patch)
treefc60bbc6175622bce838bfb83209c6f692181b18 /glib/dbus-gtest-main.c
parentc20c4181f275f24413eeff2ea85d2a0d539c9a91 (diff)
2003-10-16 Havoc Pennington <hp@redhat.com>
* glib/dbus-gtest-main.c: bracket with #ifdef DBUS_BUILD_TESTS * Makefile.am (GCOV_DIRS): remove "test", we don't care about test coverage of the tests (coverage-report.txt): don't move the .da and .bbg files around
Diffstat (limited to 'glib/dbus-gtest-main.c')
-rw-r--r--glib/dbus-gtest-main.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/glib/dbus-gtest-main.c b/glib/dbus-gtest-main.c
index 5cc6cb78..5ab1246a 100644
--- a/glib/dbus-gtest-main.c
+++ b/glib/dbus-gtest-main.c
@@ -20,6 +20,9 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*/
+#include <config.h>
+
+#ifdef DBUS_BUILD_TESTS
#include "dbus-gtest.h"
#include <stdio.h>
@@ -44,3 +47,5 @@ main (int argc,
return 0;
}
+
+#endif