Diff between 9f5e07101c18ce02924c06cff64fbf5d5b57f072 and 616dd86bdcd7d60504b2545475a98c30211145ba
Changed Files
| File | Additions | Deletions | Status |
| tools/mgmt-tester.c | +3 | -0 | modified |
Full Patch
diff --git a/tools/mgmt-tester.c b/tools/mgmt-tester.c
index c9de770..767e010 100644
--- a/tools/mgmt-tester.c
+++ b/tools/mgmt-tester.c
@@ -6780,6 +6780,9 @@ static bool verify_alt_ev(const void *param, uint16_t length)
if (test->expect_alt_ev_param &&
memcmp(test->expect_alt_ev_param, param, length)) {
tester_warn("Event parameters do not match");
+ util_hexdump('>', param, length, print_debug, "");
+ util_hexdump('!', test->expect_alt_ev_param, length,
+ print_debug, "");
return false;
}