Skip to content

Instantly share code, notes, and snippets.

View ben-barbier's full-sized avatar
💫
¯\_(ツ)_/¯

Benjamin Barbier ben-barbier

💫
¯\_(ツ)_/¯
View GitHub Profile
@xseignard
xseignard / merge_lcov
Last active June 22, 2022 12:47
Merge lcov files
#!/bin/bash
while read FILENAME; do
LCOV_INPUT_FILES="$LCOV_INPUT_FILES -a \"$FILENAME\""
done < <( find $1 -name lcov.info )
eval lcov "${LCOV_INPUT_FILES}" -o $1/$2