Accept inaccurate coverage for the time being

This commit is contained in:
Joseph Birr-Pixton 2017-07-22 19:12:42 +01:00
parent 4416c5a034
commit d7ae542376
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ import glob
import subprocess
LLVM_PATH = glob.glob('/usr/lib/llvm-3.8/lib/clang/3.8.[0-9]/lib/linux/')[0]
COVERAGE_OPTIONS = '-Ccodegen-units=1 -Clink-dead-code -Cpasses=insert-gcov-profiling -Zno-landing-pads -L%s -lclang_rt.profile-x86_64' % LLVM_PATH
COVERAGE_OPTIONS = '-Ccodegen-units=1 -Clink-dead-code -Cpasses=insert-gcov-profiling -L%s -lclang_rt.profile-x86_64' % LLVM_PATH
LCOVOPTS = '--gcov-tool ./admin/llvm-gcov --rc lcov_branch_coverage=1 --rc lcov_excl_line=assert'.split()
def lcov_exe(*args):