gcovr --gcov-ignore-parse-errors

workaround interop. issue with gcc 12 and gcovr 5.2
This commit is contained in:
Michael Davidsaver
2023-09-07 10:52:04 +02:00
parent 0274358453
commit 3eea56fbc9
+2 -2
View File
@@ -41,10 +41,10 @@ OUTDIR="$PWD"/coverage
install -d "$OUTDIR"
cd "$TDIR"/src/O.linux-*
gcovr -v -r .. --html --html-details -o "$OUTDIR"/coverage.html
gcovr --gcov-ignore-parse-errors -v -r .. --html --html-details -o "$OUTDIR"/coverage.html
cd "$TDIR"/ioc/O.linux-*
gcovr -v -r .. --html --html-details -o "$OUTDIR"/coverage-ioc.html
gcovr --gcov-ignore-parse-errors -v -r .. --html --html-details -o "$OUTDIR"/coverage-ioc.html
cd "$OUTDIR"
tar -cavf coverage.tar.bz2 coverage*.html