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: 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, 141 add_ubuntu_tests(ubuntu_version='18.10', compiler='gcc-8', asan=False, ubsan=False, smoke_tests=['D… 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… [all …]
|