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, 25 elif compiler.startswith('clang'): 26 return 'clang' 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.') 48 excessive_excluded_tests = set(exclude_tests) - set(tests) 70 def add_ubuntu_tests(ubuntu_version, compiler, os='linux', stl=None, asan=True, ubsan=True, argument [all …]
|