diff --git a/tools/mgmt-tester.c b/tools/mgmt-tester.c
index 09e4a67..03630a5 100644
--- a/tools/mgmt-tester.c
+++ b/tools/mgmt-tester.c
.expect_status = MGMT_STATUS_SUCCESS,
};
+static const struct generic_data load_irks_not_supported_test = {
+ .send_opcode = MGMT_OP_LOAD_IRKS,
+ .send_param = load_irks_empty_list,
+ .send_len = sizeof(load_irks_empty_list),
+ .expect_status = MGMT_STATUS_NOT_SUPPORTED,
+};
+
static void client_cmd_complete(uint16_t opcode, uint8_t status,
const void *param, uint8_t len,
void *user_data)
test_bredrle("Load IRKs - Success 2",
&load_irks_success2_test,
NULL, test_command_generic);
+ test_bredr("Load IRKs - Not Supported",
+ &load_irks_not_supported_test,
+ NULL, test_command_generic);
return tester_run();
}