From: Lorenzo Colitti Date: Fri, 8 Apr 2016 04:33:38 +0000 (+0900) Subject: Deduplicate test targets. X-Git-Tag: android-x86-7.1-r1~64 X-Git-Url: http://git.osdn.net/view?p=android-x86%2Fsystem-netd.git;a=commitdiff_plain;h=15c35db4be38749a31774a2cca6ef26f94bba787 Deduplicate test targets. netd_integration_test already runs all the tests in netd_test. Change-Id: I44c2ffaecded071a54af1c54c823856ffc6eb0cf --- diff --git a/tests/Android.mk b/tests/Android.mk index 99d31d4..6e191e1 100644 --- a/tests/Android.mk +++ b/tests/Android.mk @@ -25,21 +25,15 @@ LOCAL_SHARED_LIBRARIES += libbase libbinder libcutils liblog liblogwrap libnetda LOCAL_STATIC_LIBRARIES += libtestUtil LOCAL_AIDL_INCLUDES := system/netd/server/binder LOCAL_C_INCLUDES += system/netd/include system/extras/tests/include system/netd/binder/include \ - system/netd/server system/core/logwrapper/include \ + system/netd/server system/core/logwrapper/include \ system/extras/tests/include bionic/libc/dns/include -LOCAL_SRC_FILES := netd_test.cpp dns_responder.cpp binder_test.cpp ../server/NetdConstants.cpp +# netd_integration_test.cpp is currently empty and exists only so that we can do: +# runtest -x system/netd/tests/netd_integration_test.cpp +LOCAL_SRC_FILES := binder_test.cpp \ + dns_responder.cpp \ + netd_integration_test.cpp \ + netd_test.cpp \ + ../server/NetdConstants.cpp LOCAL_MODULE_TAGS := eng tests include $(BUILD_NATIVE_TEST) -# netd_test build target, to enable using runtest -x system/netd/tests/netd_test.cpp -include $(CLEAR_VARS) -LOCAL_MODULE := netd_test -LOCAL_CFLAGS := -Wall -Werror -Wunused-parameter -EXTRA_LDLIBS := -lpthread -LOCAL_SHARED_LIBRARIES += libbase libcutils liblog libnetd_client libutils -LOCAL_STATIC_LIBRARIES += libtestUtil -LOCAL_C_INCLUDES += system/core/base/include system/netd/include system/extras/tests/include \ - system/extras/tests/include bionic/libc/dns/include -LOCAL_SRC_FILES := netd_test.cpp dns_responder.cpp -LOCAL_MODULE_TAGS := eng tests -include $(BUILD_NATIVE_TEST) diff --git a/tests/netd_integration_test.cpp b/tests/netd_integration_test.cpp new file mode 100644 index 0000000..459521f --- /dev/null +++ b/tests/netd_integration_test.cpp @@ -0,0 +1,2 @@ +// This file currently exists only so we can do: +// runtest -x system/netd/tests/netd_integration_test.cpp