about summary refs log tree commit diff
path: root/pkgs/test/cc-wrapper/sanitizers.c
diff options
context:
space:
mode:
authorBenjamin Saunders <benjamin.saunders@here.com>2018-05-07 13:22:50 -0700
committerJohn Ericson <John.Ericson@Obsidian.Systems>2018-05-24 02:57:44 -0400
commit46eeef1898ffbf57330ec31b96a6c2d89f8fcb36 (patch)
tree1ff7be30a066e05a6ae78b8fd315a8f60e2d0c58 /pkgs/test/cc-wrapper/sanitizers.c
parent16da44b5c115fe58048d7ba8aa597ed1598ea090 (diff)
tests.cc-wrapper: verify building with sanitizers
Diffstat (limited to 'pkgs/test/cc-wrapper/sanitizers.c')
-rw-r--r--pkgs/test/cc-wrapper/sanitizers.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/pkgs/test/cc-wrapper/sanitizers.c b/pkgs/test/cc-wrapper/sanitizers.c
new file mode 100644
index 0000000000000..93dd78a903ce0
--- /dev/null
+++ b/pkgs/test/cc-wrapper/sanitizers.c
@@ -0,0 +1,8 @@
+#include <sanitizer/asan_interface.h>
+#include <stdio.h>
+
+int main(int argc, char **argv)
+{
+  fprintf(stderr, "ok\n");
+  return 0;
+}