summaryrefslogtreecommitdiff
path: root/tests/tcp_nuke_addr/Android.mk
diff options
context:
space:
mode:
authorLorenzo Colitti <lorenzo@google.com>2015-09-14 14:54:55 +0900
committerLorenzo Colitti <lorenzo@google.com>2015-09-18 16:31:55 +0900
commit660bdfdefcd4e8662e47c8ac9236fdb8df18a934 (patch)
tree6b43041228dec9d6286765566484f0e86346efa4 /tests/tcp_nuke_addr/Android.mk
parenta9fe6b7c67383ea81aa8cbed9928dff4a517d944 (diff)
downloadextras-660bdfdefcd4e8662e47c8ac9236fdb8df18a934.tar.gz
Add a crash test for tcp_nuke_addr.
Bug: 23663111 Change-Id: I3b79362d6a53b7689168488527059ae506161d5f
Diffstat (limited to 'tests/tcp_nuke_addr/Android.mk')
-rw-r--r--tests/tcp_nuke_addr/Android.mk12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/tcp_nuke_addr/Android.mk b/tests/tcp_nuke_addr/Android.mk
new file mode 100644
index 00000000..2eef6089
--- /dev/null
+++ b/tests/tcp_nuke_addr/Android.mk
@@ -0,0 +1,12 @@
+LOCAL_PATH := $(call my-dir)
+
+include $(CLEAR_VARS)
+LOCAL_MODULE := tcp_nuke_addr_test
+
+LOCAL_C_INCLUDES += frameworks/native/include external/libcxx/include
+LOCAL_CPPFLAGS += -std=c++11 -Wall -Werror
+LOCAL_SHARED_LIBRARIES := libc++
+LOCAL_SRC_FILES := tcp_nuke_addr_test.cpp
+LOCAL_MODULE_TAGS := eng tests
+
+include $(BUILD_NATIVE_TEST)