Winbind needs this to initiate some async stuff that is not part of this test,
so the ioloop is never actually run. However, in its absence a segfault crash
occurs.
#include "str.h"
#include "base64.h"
#include "randgen.h"
+#include "ioloop.h"
#include "test-common.h"
#include "password-scheme.h"
#include "gssapi-dummy.h"
test_sasl_bad_credentials,
NULL
};
+ struct ioloop *ioloop;
bool debug = FALSE;
int ret, c;
dsasl_clients_init_gssapi();
#endif
+ ioloop = io_loop_create();
ret = test_run(test_functions);
+ io_loop_destroy(&ioloop);
dsasl_clients_deinit();
password_schemes_deinit();