Diff between b39f74c2d8ce0046df7a6c62fb7c866ff256b5a4 and 4e8ff0b5c8b5dbc01027cdf596f59397cfaa122e

Changed Files

File Additions Deletions Status
tools/hci-tester.c +9 -0 modified

Full Patch

diff --git a/tools/hci-tester.c b/tools/hci-tester.c
index 8676995..774642e 100644
--- a/tools/hci-tester.c
+++ b/tools/hci-tester.c
@@ -227,6 +227,15 @@ static void test_read_local_supported_codecs(const void *test_data)
 static void test_inquiry_complete(const void *data, uint8_t size,
 							void *user_data)
 {
+	const struct bt_hci_evt_inquiry_complete *evt = data;
+
+	if (evt->status) {
+		tester_warn("HCI inquiry complete failed (0x%02x)",
+							evt->status);
+		tester_test_failed();
+		return;
+	}
+
 	tester_test_passed();
 }