diff options
| author | Marc André Tanner <mat@brain-dump.org> | 2020-05-13 09:12:43 +0200 |
|---|---|---|
| committer | Marc André Tanner <mat@brain-dump.org> | 2020-05-13 09:12:43 +0200 |
| commit | a2166faef78720aeaba00dfd0125ce5911588546 (patch) | |
| tree | b4ee73afc9d565b85323bbd8d62734cd6cac77df | |
| parent | c47ffea240fe3235360e989c38b00bc5e06ea7da (diff) | |
| download | vis-a2166faef78720aeaba00dfd0125ce5911588546.tar.gz vis-a2166faef78720aeaba00dfd0125ce5911588546.tar.xz | |
test/core: instruct memory sanitizer to track memory origin
| -rw-r--r-- | core/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Makefile b/core/Makefile index fc33232..92a06a1 100644 --- a/core/Makefile +++ b/core/Makefile @@ -43,7 +43,7 @@ ubsan: clean $(MAKE) CFLAGS_EXTRA='-fsanitize=undefined' msan: clean - $(MAKE) CFLAGS_EXTRA='-g -fsanitize=memory' + $(MAKE) CFLAGS_EXTRA='-fsanitize=memory -fsanitize-memory-track-origins' valgrind: clean ${ALL} @for test in ${ALL}; do \ |
