Diff between 952276ed10e836a108e7abd1cbc4a4e4b4682823 and cd979dfebe26074c64d4d5d7fc3837137849ae52

Changed Files

File Additions Deletions Status
android/tester-main.c +1 -1 modified
android/tester-main.h +3 -0 modified

Full Patch

diff --git a/android/tester-main.c b/android/tester-main.c
index e7b1e1b..bbb3375 100644
--- a/android/tester-main.c
+++ b/android/tester-main.c
@@ -560,7 +560,7 @@ static void schedule_callback_call(struct step *step)
 	g_idle_add(verify_callback, step);
 }
 
-static void schedule_action_verification(struct step *step)
+void schedule_action_verification(struct step *step)
 {
 	g_idle_add_full(G_PRIORITY_HIGH_IDLE, verify_action, step, NULL);
 }
diff --git a/android/tester-main.h b/android/tester-main.h
index a239ae1..0f3f165 100644
--- a/android/tester-main.h
+++ b/android/tester-main.h
@@ -266,6 +266,9 @@ void remove_hidhost_tests(void);
 struct queue *get_gatt_tests(void);
 void remove_gatt_tests(void);
 
+/* Generic tester API */
+void schedule_action_verification(struct step *step);
+
 /* Emulator actions */
 void emu_setup_powered_remote_action(void);
 void emu_set_pin_code_action(void);