Diff between 42e8f8844fd04140c600c538d26e888670d42c05 and a545949b1eb63b95c0156b4980b2341c1c843336

Changed Files

File Additions Deletions Status
doc/test-coverage.txt +2 -2 modified
tools/hci-tester.c +15 -0 modified

Full Patch

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
@@ -40,9 +40,9 @@ rfcomm-tester		   9	Kernel RFCOMM implementation testing
 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
@@ -329,6 +329,16 @@ static void test_read_local_supported_codecs(const void *test_data)
 	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)
 {
@@ -643,6 +653,11 @@ int main(int argc, char *argv[])
 	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,