#include "utils/common.h"
#include "utils/bitfield.h"
#include "utils/ext_password.h"
+#include "utils/trace.h"
struct printf_test_data {
}
+static int trace_tests(void)
+{
+ wpa_printf(MSG_INFO, "trace tests");
+
+ wpa_trace_show("test backtrace");
+ wpa_trace_dump_funcname("test funcname", trace_tests);
+
+ return 0;
+}
+
+
int utils_module_tests(void)
{
int ret = 0;
if (printf_encode_decode_tests() < 0 ||
ext_password_tests() < 0 ||
+ trace_tests() < 0 ||
bitfield_tests() < 0 ||
int_array_tests() < 0)
ret = -1;