Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8643dc94 authored by Sharvil Nanavati's avatar Sharvil Nanavati Committed by Andre Eisenbach
Browse files

Rename Bluetooth binaries to use the net_ and net_test_ prefixes.

parent 3c9d4e75
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -53,7 +53,7 @@ LOCAL_SRC_FILES := \
    ../osi/test/AllocationTestHarness.cpp

LOCAL_CFLAGS := -Wall -Werror -Werror=unused-variable
LOCAL_MODULE := btcoretests
LOCAL_MODULE := net_test_btcore
LOCAL_MODULE_TAGS := tests
LOCAL_SHARED_LIBRARIES := liblog
LOCAL_STATIC_LIBRARIES := libbtcore libosi
+1 −1
Original line number Diff line number Diff line
@@ -70,7 +70,7 @@ LOCAL_SRC_FILES := \


LOCAL_CFLAGS := -Wall -Werror $(bdroid_CFLAGS)
LOCAL_MODULE := libbt-hcitests
LOCAL_MODULE := net_test_hci
LOCAL_MODULE_TAGS := tests
LOCAL_SHARED_LIBRARIES := liblog libdl
LOCAL_STATIC_LIBRARIES := libbt-hci libosi libcutils libbtcore
+1 −1
Original line number Diff line number Diff line
@@ -76,7 +76,7 @@ LOCAL_SRC_FILES := \
    ./test/thread_test.cpp

LOCAL_CFLAGS := -Wall -Werror
LOCAL_MODULE := ositests
LOCAL_MODULE := net_test_osi
LOCAL_MODULE_TAGS := tests
LOCAL_SHARED_LIBRARIES := liblog
LOCAL_STATIC_LIBRARIES := libosi
+1 −1
Original line number Diff line number Diff line
@@ -19,7 +19,7 @@ LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)

LOCAL_MODULE_TAGS := optional
LOCAL_MODULE := bdtest
LOCAL_MODULE := net_test_bluedroid

LOCAL_C_INCLUDES += \
    $(LOCAL_PATH)/../../
+1 −2
Original line number Diff line number Diff line
@@ -64,8 +64,7 @@ static void *watchdog_fn(void *arg) {
  return NULL;
}

// Is shell still running? bdtest must run with shell stopped.
static bool is_shell_running() {
static bool is_shell_running(void) {
  char property_str[100];
  property_get("init.svc.zygote", property_str, NULL);
  if (!strcmp("running", property_str)) {
Loading