From: Andrei Emeltchenko <andrei.emeltchenko@xxxxxxxxx> In test setup phase check status returned from enable() call. --- android/android-tester.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/android/android-tester.c b/android/android-tester.c index bd6fa02..4a75704 100644 --- a/android/android-tester.c +++ b/android/android-tester.c @@ -696,10 +696,13 @@ static void setup_base(const void *test_data) static void setup_enabled_adapter(const void *test_data) { struct test_data *data = tester_get_data(); + bt_status_t status; setup(data); - data->if_bluetooth->enable(); + status = data->if_bluetooth->enable(); + if (status != BT_STATUS_SUCCESS) + tester_setup_failed(); } static void teardown(const void *test_data) -- 1.8.3.2 -- 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