Diff between 64a26d922ec70901eb896a13e547d5074993e15e and e4de043e08a233fcd5672f10ea74d6450a110f45
Changed Files
| File | Additions | Deletions | Status |
| tools/mgmt-tester.c | +3 | -1 | modified |
Full Patch
diff --git a/tools/mgmt-tester.c b/tools/mgmt-tester.c
index 27a5f0b..4775fb1 100644
--- a/tools/mgmt-tester.c
+++ b/tools/mgmt-tester.c
@@ -6381,7 +6381,9 @@ static void command_hci_callback(uint16_t opcode, const void *param,
}
if (memcmp(param, expect_hci_param, length) != 0) {
- tester_warn("Unexpected HCI command parameter value");
+ tester_warn("Unexpected HCI command parameter value:");
+ util_hexdump('>', param, length, print_debug, "");
+ util_hexdump('!', expect_hci_param, length, print_debug, "");
tester_test_failed();
return;
}