The tests are run with _dbus_warn() fatal, so if a particular test is
not applicable on the current platform, we shouldn't call it.
Bug: https://bugs.freedesktop.org/show_bug.cgi?id=92721
Reviewed-by: Ralf Habacker <ralf.habacker@freenet.de>
#ifdef DBUS_ENABLE_EMBEDDED_TESTS
#include "dbus-auth-script.h"
+
+#include <stdio.h>
+
#include "dbus-auth.h"
#include "dbus-string.h"
#include "dbus-hash.h"
"UNIX_ONLY"))
{
/* skip this file */
- _dbus_warn ("skipping unix only auth script\n");
+ fprintf (stderr, "skipping unix only auth script\n");
retval = TRUE;
goto out;
}
"WIN_ONLY"))
{
/* skip this file */
- _dbus_warn ("skipping windows only auth script\n");
+ fprintf (stderr, "skipping windows only auth script\n");
retval = TRUE;
goto out;
}