Skip to content

Latest commit

 

History

History
21 lines (14 loc) · 952 Bytes

README.md

File metadata and controls

21 lines (14 loc) · 952 Bytes

Kcov AppImage

An AppImage of Kcov code coverage tool.

Build Status

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.