diff --git a/android/android-tester.c b/android/android-tester.c
index 0383115..f5ab14f 100644
--- a/android/android-tester.c
+++ b/android/android-tester.c
{
const hw_module_t *module;
hw_device_t *device;
- bt_status_t status;
int signal_fd[2];
char buf[1024];
pid_t pid;
return;
}
- status = data->if_bluetooth->init(&bt_callbacks);
- if (status != BT_STATUS_SUCCESS) {
- data->if_bluetooth = NULL;
- tester_setup_failed();
- }
}
static void setup_base(const void *test_data)
{
struct test_data *data = tester_get_data();
+ bt_status_t status;
setup(data);
+ status = data->if_bluetooth->init(&bt_callbacks);
+ if (status != BT_STATUS_SUCCESS) {
+ data->if_bluetooth = NULL;
+ tester_setup_failed();
+ }
+
tester_setup_complete();
}
setup(data);
+ status = data->if_bluetooth->init(&bt_callbacks);
+ if (status != BT_STATUS_SUCCESS) {
+ data->if_bluetooth = NULL;
+ tester_setup_failed();
+ }
status = data->if_bluetooth->enable();
if (status != BT_STATUS_SUCCESS)
tester_setup_failed();
/* Test Socket HAL */
+static void adapter_socket_state_changed_cb(bt_state_t state)
+{
+ switch (state) {
+ case BT_STATE_ON:
+ setup_powered_emulated_remote();
+ break;
+ case BT_STATE_OFF:
+ tester_setup_failed();
+ break;
+ default:
+ break;
+ }
+}
+
const bt_bdaddr_t bdaddr_dummy = {
.address = { 0x00, 0x11, 0x22, 0x33, 0x44, 0x55}
};
.test_channel = true,
};
+static bt_callbacks_t bt_socket_callbacks = {
+ .size = sizeof(bt_callbacks),
+ .adapter_state_changed_cb = adapter_socket_state_changed_cb,
+ .adapter_properties_cb = NULL,
+ .remote_device_properties_cb = NULL,
+ .device_found_cb = NULL,
+ .discovery_state_changed_cb = NULL,
+ .pin_request_cb = NULL,
+ .ssp_request_cb = NULL,
+ .bond_state_changed_cb = NULL,
+ .acl_state_changed_cb = NULL,
+ .thread_evt_cb = NULL,
+ .dut_mode_recv_cb = NULL,
+ .le_test_mode_cb = NULL
+};
+
static void setup_socket_interface(const void *test_data)
{
struct test_data *data = tester_get_data();
+ bt_status_t status;
const void *sock;
setup(data);
+ status = data->if_bluetooth->init(&bt_socket_callbacks);
+ if (status != BT_STATUS_SUCCESS) {
+ data->if_bluetooth = NULL;
+ tester_setup_failed();
+ }
+
sock = data->if_bluetooth->get_profile_interface(BT_PROFILE_SOCKETS_ID);
if (!sock) {
tester_setup_failed();
static void setup_socket_interface_enabled(const void *test_data)
{
struct test_data *data = tester_get_data();
- const void *sock;
bt_status_t status;
+ const void *sock;
setup(data);
+ status = data->if_bluetooth->init(&bt_socket_callbacks);
+ if (status != BT_STATUS_SUCCESS) {
+ data->if_bluetooth = NULL;
+ tester_setup_failed();
+ }
+
sock = data->if_bluetooth->get_profile_interface(BT_PROFILE_SOCKETS_ID);
if (!sock) {
tester_setup_failed();