11

我的源代码和构建树在make(构建和运行FooAndBarTests)之后看起来像这样(参见Makefile,将不同目录中的目标文件放入一个单独的目录中? ):

src
- Foo.cpp
- Bar.cpp
inc
- Foo.h
- Bar.h
test
- FooTest.cpp
- BarTest.cpp
- Main.cpp
- Makefile
- obj
  - Foo.gcda
  - Foo.gcno
  - Bar.gcda
  - Bar.gcno
- FooAndBarTests
UnitTest++
- libUnitTest++.a
- src
  - ...

然后,我可以通过运行gcov -o obj/ ../src/Foo.cpp和.gcov 在测试目录中生成 .gcov 文件gcov -o obj/ ../src/Bar.cpp

但如果我跑步,lcov -d obj/ -c -o FooAndBarTests.lcov我会得到:

Capturing coverage data from obj/
Found gcov version: 4.2.1
Scanning obj/ for .gcda files ...
Found 4 data files in obj/
Processing Foo.gcda
../src/Foo.cpp:cannot open source file
Processing FooTest.gcda
FooTest.cpp:cannot open source file
../inc/Foo.h:cannot open source file
../UnitTest++/src/Checks.h:cannot open source file
...

然后当我跑步时,genhtml FooAndBarTests.lcov我得到:

Reading data file FooAndBarTests.lcov
Found 45 entries.
Found common filename prefix "/Users/dspitzer/FooAndBar/test"
Writing .css and .png files.
Generating output.
Processing file UnitTest++/src/Checks.h
genhtml: ERROR: cannot open /Users/dspitzer/FooAndBar/test/UnitTest++/src/Checks.h for reading!

如何告诉 lcov 和 genhtml .cpp 和 .h 文件在哪里?

4

1 回答 1

15

使用-b选项来lcov。该-b选项指定代码库。

于 2010-12-22T19:43:25.740 回答