tests: Unit tests for WPA_TRACE

Signed-off-by: Jouni Malinen <j@w1.fi>
This commit is contained in:
Jouni Malinen 2014-05-27 00:03:06 +03:00
parent a3fe74bde1
commit f347935f0d

View file

@ -11,6 +11,7 @@
#include "utils/common.h" #include "utils/common.h"
#include "utils/bitfield.h" #include "utils/bitfield.h"
#include "utils/ext_password.h" #include "utils/ext_password.h"
#include "utils/trace.h"
struct printf_test_data { struct printf_test_data {
@ -220,6 +221,17 @@ static int ext_password_tests(void)
} }
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 utils_module_tests(void)
{ {
int ret = 0; int ret = 0;
@ -228,6 +240,7 @@ int utils_module_tests(void)
if (printf_encode_decode_tests() < 0 || if (printf_encode_decode_tests() < 0 ||
ext_password_tests() < 0 || ext_password_tests() < 0 ||
trace_tests() < 0 ||
bitfield_tests() < 0 || bitfield_tests() < 0 ||
int_array_tests() < 0) int_array_tests() < 0)
ret = -1; ret = -1;