From 4e8ff0b5c8b5dbc01027cdf596f59397cfaa122e Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Sun, 12 Jan 2014 17:31:32 -0800 Subject: [PATCH] tools: Check status of HCI Inquiry Complete event --- tools/hci-tester.c | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/tools/hci-tester.c b/tools/hci-tester.c index 867699580..774642e29 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(); } -- 2.11.0