disable clang sanitizers in CI on any platforms but Darwin
This commit is contained in:
parent
b041042473
commit
da67f4cb9a
@ -505,6 +505,11 @@ def main():
|
|||||||
print('LLDB is only supported on Apple at this point')
|
print('LLDB is only supported on Apple at this point')
|
||||||
args.lldb = False
|
args.lldb = False
|
||||||
|
|
||||||
|
# Sanitizers display lots of strange errors on Linux on CI,
|
||||||
|
# which looks like false positives
|
||||||
|
if platform.system() != 'Darwin':
|
||||||
|
sanitizer = None
|
||||||
|
|
||||||
return run(args.test, buildDir, sanitizer, xmlOutput,
|
return run(args.test, buildDir, sanitizer, xmlOutput,
|
||||||
testRunName, args.build_only, args.lldb)
|
testRunName, args.build_only, args.lldb)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user