aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChih-Hung Hsieh <chh@google.com>2017-09-28 13:47:41 -0700
committerChih-Hung Hsieh <chh@google.com>2017-09-28 13:48:23 -0700
commit9508fd1390ddb34c0c8628ef829aa093b651c054 (patch)
tree35eb0e06673e78577a4a35ec32480d44b342565a
parente2607d54fdb00903023e44a65220357ac66ffa30 (diff)
downloadlibconstrainedcrypto-9508fd1390ddb34c0c8628ef829aa093b651c054.tar.gz
Use -Werror in external/libconstrainedcrypto
Bug: 66996870 Test: build with WITH_TIDY=1 Change-Id: I9e1d99cc5038e7e340e84b5f44acb8e5cd43c71d
-rw-r--r--test/Android.bp2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/Android.bp b/test/Android.bp
index 0cd398e..ef4cf19 100644
--- a/test/Android.bp
+++ b/test/Android.bp
@@ -4,10 +4,12 @@ cc_test_host {
name: "constrainedcrypto_rsa_test",
srcs: ["rsa_test.c"],
static_libs: ["libconstrainedcrypto"],
+ cflags: ["-Wall", "-Werror"],
}
cc_test_host {
name: "constrainedcrypto_ecdsa_test",
srcs: ["ecdsa_test.c"],
static_libs: ["libconstrainedcrypto"],
+ cflags: ["-Wall", "-Werror"],
}