diff options
author | Reinhard Tartler <siretart@tauware.de> | 2013-03-23 08:17:24 +0100 |
---|---|---|
committer | Reinhard Tartler <siretart@tauware.de> | 2013-04-05 18:55:11 +0200 |
commit | a862c7d3368241e72a465ab944afa38ea62a6640 (patch) | |
tree | 8e1ef0f68082a2f27b56858e57e7bc4a9c3ce91b /.gitignore | |
parent | 52cd84d4d4e335daf26eb8c8b60c2578b3341b91 (diff) | |
download | ffmpeg-a862c7d3368241e72a465ab944afa38ea62a6640.tar.gz |
Integrate lcov/gcov into Libav
The gcov/lcov are a common toolchain for visualizing code coverage with
the GNU/Toolchain. The documentation and implementation of this
integration was heavily inspired from the blog entry by Mike Melanson:
http://multimedia.cx/eggs/using-lcov-with-ffmpeg/
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore index 3ed55b3487..000f149c4e 100644 --- a/.gitignore +++ b/.gitignore @@ -5,6 +5,8 @@ *.dll *.exe *.exp +*.gcda +*.gcno *.h.c *.ilk *.lib @@ -22,6 +24,7 @@ /avprobe /avserver /config.* +/coverage.info /version.h /doc/*.1 /doc/*.html @@ -30,6 +33,7 @@ /doc/avoptions_format.texi /doc/doxy/html/ /doc/print_options +/lcov/ /libavcodec/*_tablegen /libavcodec/*_tables.c /libavcodec/*_tables.h |