Frage

Meine Quelle und Build-Baum sieht wie folgt aus (siehe Objektdateien setzen von der Quelle unterschiedliche Verzeichnisse in eine einzige, separaten Verzeichnis-Dateien ) nach einem make (was baut und läuft FooAndBarTests):

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
  - ...

Ich kann dann produzieren .gcov Dateien im Testverzeichnis von gcov -o obj/ ../src/Foo.cpp und gcov -o obj/ ../src/Bar.cpp ausgeführt wird.

Aber wenn ich lcov -d obj/ -c -o FooAndBarTests.lcov laufen erhalte ich:

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
...

Und dann, wenn ich genhtml FooAndBarTests.lcov laufen erhalte ich:

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!

Wie kann ich feststellen lcov und GenHTML wo die CPP und H-Dateien sind?

War es hilfreich?

Lösung

Verwenden Sie die -b Option lcov. Die Code-Basis gibt an -b Option.

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top