OSDN Git Service

Deduplicate test targets.
authorLorenzo Colitti <lorenzo@google.com>
Fri, 8 Apr 2016 04:33:38 +0000 (13:33 +0900)
committerLorenzo Colitti <lorenzo@google.com>
Fri, 8 Apr 2016 04:54:46 +0000 (13:54 +0900)
netd_integration_test already runs all the tests in netd_test.

Change-Id: I44c2ffaecded071a54af1c54c823856ffc6eb0cf

tests/Android.mk
tests/netd_integration_test.cpp [new file with mode: 0644]

index 99d31d4..6e191e1 100644 (file)
@@ -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 (file)
index 0000000..459521f
--- /dev/null
@@ -0,0 +1,2 @@
+// This file currently exists only so we can do:
+// runtest -x system/netd/tests/netd_integration_test.cpp