D | travis_yml_generator.py | 30 def determine_tests(asan, ubsan, smoke_tests, use_precompiled_headers_in_tests, exclude_tests, argument 35 if asan: 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… [all …]
|