An AppImage of Kcov code coverage tool.
Handy to use with Travis : Download and run this AppImage rather than rebuilding Kcov from sources on every build.
This kind of Bash script may help you to download the latest AppImage of Kcov from this repo :
getKcovAppImage() {
trampoline=https://raw.githubusercontent.com/julien-montmartin/kcov-appimage/master/trampoline.txt
curl -s ${trampoline} | curl -sLK -
chmod +x ./kcov-x86_64.AppImage
echo "Running AppImage of $(./kcov-x86_64.AppImage --version)"
}
Call getKcovAppImage
and run ./kcov-x86_64.AppImage
with the command line you need for your project. See this Rust repo for a working example.