Compare commits
No commits in common. "38ec10f4fdc057fcc013ce32399c20c2517326c0" and "9cbebaef06aeae6a5c76dd0e832ad714405ec329" have entirely different histories.
38ec10f4fd
...
9cbebaef06
1 changed files with 4 additions and 4 deletions
|
|
@ -35,16 +35,16 @@ for test in $(find ./build -type f -name '*_tests' -executable); do
|
|||
"$test"
|
||||
done
|
||||
|
||||
llvm-profdata merge --input-files './build/coverage/list' -o "./coverage/merged.profdata"
|
||||
llvm-profdata merge --input-files './coverage/list' -o "./coverage/merged.profdata"
|
||||
find ./build/modules -type f -name "*.profraw" -exec rm -fv {} +
|
||||
|
||||
LLVM_COV_SHOW=$(llvm-cov show \
|
||||
-instr-profile='./build/coverage/merged.profdata' \
|
||||
-instr-profile='./coverage/merged.profdata' \
|
||||
$(find ./build -type f -name '*_tests' -executable -exec printf -- '-object %s ' {} \;) \
|
||||
$(find ./build -type f -name '*\.a' -exec printf -- '-object %s ' {} \;) \
|
||||
-ignore-filename-regex='\.test\.cpp$' \
|
||||
-ignore-filename-regex='\.fuzz\.cpp$'
|
||||
)
|
||||
|
||||
echo "${LLVM_COV_SHOW}" > './build/coverage/coverage.txt'
|
||||
cd ./build/coverage/ && wget -qO- "https://codecov.io/bash" | bash
|
||||
echo "${LLVM_COV_SHOW}" > './coverage/coverage.txt'
|
||||
wget -qO- "https://codecov.io/bash" | bash
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue