--- android/tester-gatt.c | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/android/tester-gatt.c b/android/tester-gatt.c index b16a844..b58886f 100644 --- a/android/tester-gatt.c +++ b/android/tester-gatt.c @@ -19,10 +19,24 @@ static struct queue *list; /* List of gatt test cases */ +static struct step dummy_steps[] = { + { + .action = dummy_action, + }, +}; +static struct test_case gatt_init = { + .step = dummy_steps, + .title = "Socket Init", + .step_num = get_test_case_step_num(dummy_steps), +}; + struct queue *get_gatt_tests(void) { list = queue_new(); + if (!queue_push_tail(list, &gatt_init)) + return NULL; + return list; } -- 1.9.3 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html