Browse Source

tests: Unit tests for WPA_TRACE

Signed-off-by: Jouni Malinen <j@w1.fi>
Jouni Malinen 10 years ago
parent
commit
f347935f0d
1 changed files with 13 additions and 0 deletions
  1. 13 0
      src/utils/utils_module_tests.c

+ 13 - 0
src/utils/utils_module_tests.c

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