summaryrefslogtreecommitdiffstats
path: root/tests/SConstruct
diff options
context:
space:
mode:
authorPetteri Aimonen <jpa@git.mail.kapsi.fi>2016-12-09 18:50:20 +0200
committerPetteri Aimonen <jpa@git.mail.kapsi.fi>2016-12-09 18:50:20 +0200
commitd445c2b04d11aa949b5a8d870739aac534b57076 (patch)
treebaf4b16f76389ee51e2066f9fa0d80f3bbe61019 /tests/SConstruct
parent69e9c1fc8162956feffa32e07a97c53bdb92f5ef (diff)
Add regression test for issue #227
Diffstat (limited to 'tests/SConstruct')
-rw-r--r--tests/SConstruct4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/SConstruct b/tests/SConstruct
index d8ab9ab0..f2abe042 100644
--- a/tests/SConstruct
+++ b/tests/SConstruct
@@ -93,7 +93,9 @@ if not env.GetOption('clean'):
conf.env.Append(CORECFLAGS = extra)
# Check if we can use undefined behaviour sanitizer (only with clang)
- extra = '-fsanitize=undefined '
+ # TODO: Fuzz test triggers the bool sanitizer, figure out whether to
+ # modify the fuzz test or to keep ignoring the check.
+ extra = '-fsanitize=undefined -fno-sanitize-recover=undefined -fsanitize-recover=bool '
if 'clang' in env['CC']:
if conf.CheckCCFLAGS(extra, linkflags = extra):
conf.env.Append(CORECFLAGS = extra)