2

コード カバレッジ レポートを生成するために lcov と genhtml を使用しています。次のディレクトリ構造では、tests/ ディレクトリにあるソース ファイルのコード カバレッジを取得できますが、src/ ディレクトリの my_file.c ファイルのコード カバレッジを取得できません。

src/
   my_file.c
   my_file.h
tests/
   AllTests.c
   CuTest.c
   CuTest.h
   my_file_tests.c

   objects/
       AllTests.gcda
       AllTests.gcno
       AllTests.o
       CuTest.gcda
       CuTest.gcno
       CuTest.o
       my_file.gcda
       my_file.gcno
       my_file.o
       my_file_tests.gcda
       my_file_tests.gcno
       my_file_tests.o

tests ディレクトリから lcov コマンドを呼び出します。

lcov -b . --directory objects/ -c -o ./coverage/app.info

Capturing coverage data from objects/
Found gcov version: 4.4.3
Scanning objects/ for .gcda files ...
Found 4 data files in objects/
Processing objects/AllTests.gcda
Processing objects/my_file_test.gcda
Processing objects/CuTest.gcda
Processing objects/my_file.gcda
geninfo: WARNING: gcov did not create any files for /home/me/workspace/project/tests/objects/my_file.gcda!
Finished .info-file creation
4

1 に答える 1

3

lcov 1.7 から 1.9 にアップグレードすると、この問題が解決しました。バージョン 1.9 はhttp://ltp.sourceforge.net/coverage/lcov.phpから入手できます。

于 2011-06-21T19:54:25.393 に答える