2015-02-23 20:10:34 +00:00
|
|
|
class Gcovr < Formula
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "Reports from gcov test coverage program"
|
2015-02-23 20:10:34 +00:00
|
|
|
homepage "http://gcovr.com/"
|
|
|
|
url "https://github.com/gcovr/gcovr/archive/3.2.tar.gz"
|
|
|
|
sha1 "97e44794969378db99cb77ee3c71b110dc634a8f"
|
|
|
|
head "https://github.com/gcovr/gcovr.git"
|
|
|
|
|
|
|
|
def install
|
|
|
|
libexec.install Dir["*"]
|
|
|
|
bin.install_symlink "../libexec/scripts/gcovr"
|
|
|
|
end
|
|
|
|
|
|
|
|
test do
|
|
|
|
(testpath/"example.c").write "int main() { return 0; }"
|
|
|
|
system *%W[cc -fprofile-arcs -ftest-coverage -fPIC -O0 -o example example.c]
|
|
|
|
assert_match "Code Coverage Report", shell_output("#{bin}/gcovr -r .")
|
|
|
|
end
|
|
|
|
end
|