diff --git a/doc/test-coverage.txt b/doc/test-coverage.txt
index d37bcb8..7965f8e 100644
--- a/doc/test-coverage.txt
+++ b/doc/test-coverage.txt
smp-tester 5 Kernel SMP implementation testing
sco-tester 8 Kernel SCO implementation testing
gap-tester 1 Daemon D-Bus API testing
-hci-tester 12 Controller hardware testing
+hci-tester 14 Controller hardware testing
-----
- 245
+ 247
Android end-to-end testing
diff --git a/tools/hci-tester.c b/tools/hci-tester.c
index 26ee800..a5dbde2 100644
--- a/tools/hci-tester.c
+++ b/tools/hci-tester.c
test_command(BT_HCI_CMD_READ_LOCAL_CODECS);
}
+static void test_le_read_white_list_size(const void *test_data)
+{
+ test_command(BT_HCI_CMD_LE_READ_WHITE_LIST_SIZE);
+}
+
+static void test_le_clear_white_list(const void *test_data)
+{
+ test_command(BT_HCI_CMD_LE_CLEAR_WHITE_LIST);
+}
+
static void test_inquiry_complete(const void *data, uint8_t size,
void *user_data)
{
test_hci_local("Read Local Supported Codecs", NULL, NULL,
test_read_local_supported_codecs);
+ test_hci_local("LE Read White List Size", NULL, NULL,
+ test_le_read_white_list_size);
+ test_hci_local("LE Clear White List", NULL, NULL,
+ test_le_clear_white_list);
+
test_hci_local("Inquiry (LIAC)", NULL, NULL, test_inquiry_liac);
test_hci("Create Connection", NULL,