Diff between 5eaa5acac53b8e87fc8e6e90e0cd542d43b1eda9 and 7fbc74076a20160e14ea3b92ce9bc7a151629d30

Changed Files

File Additions Deletions Status
tools/smp-tester.c +0 -13 modified

Full Patch

diff --git a/tools/smp-tester.c b/tools/smp-tester.c
index 27a75e8..a53627e 100644
--- a/tools/smp-tester.c
+++ b/tools/smp-tester.c
@@ -327,16 +327,6 @@ static const struct smp_req_rsp srv_nval_req_3[] = {
 	{ smp_nval_req_4, sizeof(smp_nval_req_4), NULL, 0 },
 };
 
-static const uint8_t disconn_param[] = { 0x2a, 0x00, 0x05 };
-
-static const struct smp_data smp_server_nval_req_4_test = {
-	.req = srv_nval_req_3,
-	.req_count = G_N_ELEMENTS(srv_nval_req_3),
-	.expect_hci_command = BT_HCI_CMD_DISCONNECT,
-	.expect_hci_param = disconn_param,
-	.expect_hci_len = sizeof(disconn_param),
-};
-
 static const uint8_t smp_basic_req_1[] = {	0x01,	/* Pairing Request */
 						0x03,	/* NoInputNoOutput */
 						0x00,	/* OOB Flag */
@@ -821,9 +811,6 @@ int main(int argc, char *argv[])
 	test_smp("SMP Server - Invalid Request 3",
 					&smp_server_nval_req_3_test,
 					setup_powered_server, test_server);
-	test_smp("SMP Server - Invalid Request 4",
-					&smp_server_nval_req_4_test,
-					setup_powered_server, test_server);
 
 	test_smp("SMP Client - Basic Request 1",
 					&smp_client_basic_req_1_test,