tests.cc-wrapper: verify building with sanitizers

(cherry picked from commit 46eeef1898)
This commit is contained in:
Benjamin Saunders
2018-05-25 11:53:18 -04:00
committed by John Ericson
parent 158e550762
commit ee06f735a8
4 changed files with 16 additions and 2 deletions
+8
View File
@@ -0,0 +1,8 @@
#include <sanitizer/asan_interface.h>
#include <stdio.h>
int main(int argc, char **argv)
{
fprintf(stderr, "ok\n");
return 0;
}