Diff between 5014b6509ce782661f69a6864f28d3bf143ae5f3 and 84bbd9ae25b83d8a4505162ebcb6d62a925c369c

Changed Files

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

Full Patch

diff --git a/android/tester-hidhost.c b/android/tester-hidhost.c
index 1df7e7c..87c9452 100644
--- a/android/tester-hidhost.c
+++ b/android/tester-hidhost.c
@@ -19,10 +19,24 @@
 
 static struct queue *list; /* List of hidhost test cases */
 
+static struct step dummy_steps[] = {
+	{
+		.action = dummy_action,
+	},
+};
+static struct test_case hidhost_init = {
+	.step = dummy_steps,
+	.title = "Hidhost Init",
+	.step_num = get_test_case_step_num(dummy_steps),
+};
+
 struct queue *get_hidhost_tests(void)
 {
 	list = queue_new();
 
+	if (!queue_push_tail(list, &hidhost_init))
+		return NULL;
+
 	return list;
 }