This patch correct struct elements initialization. Now test name is declared as variable before test case struct and its size is calculated using sizeof(), not by hard coded number. --- android/android-tester.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/android/android-tester.c b/android/android-tester.c index fc53465..5e5b951 100644 --- a/android/android-tester.c +++ b/android/android-tester.c @@ -715,12 +715,14 @@ static const struct generic_data bluetooth_disable_success_test = { .expected_adapter_status = BT_STATUS_SUCCESS, }; +static char test_set_bdname[] = "test_bdname_set"; + static const struct generic_data bluetooth_setprop_bdname_success_test = { .expected_hal_callbacks = { ADAPTER_PROP_BDNAME, ADAPTER_TEST_END }, .expected_adapter_status = BT_STATUS_SUCCESS, .expected_property.type = BT_PROPERTY_BDNAME, - .expected_property.val = "test_bdname", - .expected_property.len = 11, + .expected_property.val = test_set_bdname, + .expected_property.len = sizeof(test_set_bdname) - 1, }; static bt_scan_mode_t test_setprop_scanmode_val = -- 1.8.4.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