Lines Matching full:ubsan
30 def determine_tests(asan, ubsan, smoke_tests, use_precompiled_headers_in_tests, exclude_tests, argument
37 if ubsan:
41 if ubsan and not asan:
42 raise Exception('Enabling UBSan but not ASan is not currently supported.')
70 def add_ubuntu_tests(ubuntu_version, compiler, os='linux', stl=None, asan=True, ubsan=True, argument
82 tests = determine_tests(asan, ubsan, smoke_tests,
97 def add_osx_tests(compiler, xcode_version=None, stl=None, asan=True, ubsan=True, argument
109 tests = determine_tests(asan, ubsan, smoke_tests,
140 # TODO: re-enable ASan/UBSan once they work in Travis CI. ATM (as of 18 November 2017) they fail du…
141 add_ubuntu_tests(ubuntu_version='18.10', compiler='gcc-8', asan=False, ubsan=False, smoke_tests=['D…
147 # ASan/UBSan are disabled for all these, the analysis on later versions is better anyway.
149 add_ubuntu_tests(ubuntu_version='14.04', compiler='gcc-5', asan=False, ubsan=False)
150 add_ubuntu_tests(ubuntu_version='14.04', compiler='clang-3.5', stl='libstdc++', asan=False, ubsan=F…
151 add_ubuntu_tests(ubuntu_version='14.04', compiler='clang-3.9', stl='libstdc++', asan=False, ubsan=F…
152 add_ubuntu_tests(ubuntu_version='14.04', compiler='clang-3.5', stl='libc++', asan=False, ubsan=Fals…
153 add_ubuntu_tests(ubuntu_version='14.04', compiler='clang-3.9', stl='libc++', asan=False, ubsan=Fals…
155 # Asan/Ubsan are disabled because it generates lots of warnings like:
160 add_osx_tests(compiler='gcc-5', xcode_version='8', asan=False, ubsan=False)
161 add_osx_tests(compiler='gcc-6', xcode_version='8', asan=False, ubsan=False, smoke_tests=['DebugPlai…
164 # UBSan is disabled because AppleClang does not support -fsanitize=undefined.
165 add_osx_tests(compiler='clang-default', xcode_version='7.3', stl='libc++', ubsan=False)
166 # UBSan is disabled because AppleClang does not support -fsanitize=undefined.
167 add_osx_tests(compiler='clang-default', xcode_version='8.2', stl='libc++', ubsan=False)
191 # add_osx_tests('clang-3.5', stl='libc++', asan=False, ubsan=False)
199 # add_ubuntu_tests(ubuntu_version='16.04', compiler='clang-3.8', stl='libc++', asan=False, ubsan=…