Diff between bb984785f958ddbb74926ca5bc251671dd95edc5 and b6f9d6c90fa836014358a53ace3047d176949a1f

Changed Files

File Additions Deletions Status
android/tester-gatt.c +14 -0 modified

Full Patch

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;
 }