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

Commit 8a8775c1 authored by Casey Dahlin's avatar Casey Dahlin
Browse files

Set up aidl for gtest



Bug: 23516947

Change-Id: I1c004868525f462d04894a7b96c671b626061ab5
Signed-off-by: default avatarCasey Dahlin <sadmac@google.com>
parent ea288fd3
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -26,4 +26,13 @@ LOCAL_MODULE := aidl

include $(BUILD_HOST_EXECUTABLE)

# Unit tests
include $(CLEAR_VARS)
LOCAL_MODULE := aidl_unittests
LOCAL_CFLAGS := -g -DUNIT_TEST
LOCAL_SRC_FILES := tests/test.cpp
LOCAL_STATIC_LIBRARIES := libgmock_host libgtest_host libBionicGtestMain
LOCAL_LDLIBS := -lrt
include $(BUILD_HOST_NATIVE_TEST)

endif # No TARGET_BUILD_APPS or TARGET_BUILD_PDK
+3 −0
Original line number Diff line number Diff line
#include <gtest/gtest.h>

TEST(DummyCase, DummyTest) {}