summaryrefslogtreecommitdiffstats
path: root/dbus/dbus-test.c
diff options
context:
space:
mode:
Diffstat (limited to 'dbus/dbus-test.c')
-rw-r--r--dbus/dbus-test.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/dbus/dbus-test.c b/dbus/dbus-test.c
index a219069f..64910ef3 100644
--- a/dbus/dbus-test.c
+++ b/dbus/dbus-test.c
@@ -42,6 +42,7 @@ die (const char *failure)
void
dbus_internal_symbol_do_not_use_run_tests (void)
{
+#ifdef DBUS_BUILD_TESTS
printf ("%s: running string tests\n", "dbus-test");
if (!_dbus_string_test ())
die ("strings");
@@ -67,6 +68,9 @@ dbus_internal_symbol_do_not_use_run_tests (void)
die ("hash tables");
printf ("%s: completed successfully\n", "dbus-test");
+#else
+ printf ("Not compiled with unit tests, not running any\n");
+#endif
}