D | travis_yml_generator.py | 8 # http://www.apache.org/licenses/LICENSE-2.0 11 # distributed under the License is distributed on an "AS-IS" BASIS, 26 elif compiler.startswith('clang'): 27 return 'clang' 32 def determine_tests(asan, ubsan, clang_tidy, smoke_tests, use_precompiled_headers_in_tests, exclude… argument 39 if ubsan: 43 if ubsan and not asan: 44 raise Exception('Enabling UBSan but not ASan is not currently supported.') 50 excessive_excluded_tests = set(exclude_tests) - set(tests) 77 def add_ubuntu_tests(ubuntu_version, compiler, os='linux', stl=None, asan=True, ubsan=True, clang_t… argument [all …]
|