summaryrefslogtreecommitdiff
path: root/hdmi_in_test
diff options
context:
space:
mode:
authorVikram Panduranga <vpandura@codeaurora.org>2019-08-07 13:33:01 -0700
committerGerrit - the friendly Code Review server <code-review@localhost>2019-09-25 16:09:46 -0700
commit6ff1c956cd0bb1e49063fc1a8086bf2da66f1d3b (patch)
tree6cc7883fb456de8b3cecddde607528f6049e33a9 /hdmi_in_test
parent4f29891fdca8b7ebafe6b676c902870dead63f2b (diff)
hal: Enable integer overflow sanitizer
Enable integer overflow sanitizer in audio HAL for kona. Change-Id: I6aba4c636f2d467518281361259b1a7768ae34d7
Diffstat (limited to 'hdmi_in_test')
-rw-r--r--hdmi_in_test/Android.mk3
1 files changed, 3 insertions, 0 deletions
diff --git a/hdmi_in_test/Android.mk b/hdmi_in_test/Android.mk
index d016cb33..47b046ab 100644
--- a/hdmi_in_test/Android.mk
+++ b/hdmi_in_test/Android.mk
@@ -18,4 +18,7 @@ LOCAL_CPPFLAGS += --coverage -fprofile-arcs -ftest-coverage
LOCAL_STATIC_LIBRARIES += libprofile_rt
endif
+ifneq ($(filter kona,$(TARGET_BOARD_PLATFORM)),)
+LOCAL_SANITIZE := integer_overflow
+endif
include $(BUILD_EXECUTABLE)