Skip to content

Commit

Permalink
fix base directory issue
Browse files Browse the repository at this point in the history
  • Loading branch information
naaando committed Dec 5, 2023
1 parent 9e8885f commit 42c36d9
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions coverage.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,11 @@ meson test -C build

cp /usr/share/vala-0.56/vapi/glib-2.0.vapi build/unit.p

cd build/unit.p
find ./ -type f -name "*.c" -exec cp {} . \;
find ./build/unit.p -type f -name "*.c" -exec cp {} build/unit.p \;

gcovr --version

gcovr -r $ROOT --txt --jacoco jacoco.xml -o $ROOT/build/meson-logs/ --gcov-ignore-errors=all
gcovr -r $ROOT --txt --jacoco -o $ROOT/build/meson-logs/ --gcov-ignore-errors=all

cat $ROOT/build/meson-logs/coverage.txt
rm $ROOT/build/meson-logs/coverage.txt

0 comments on commit 42c36d9

Please sign in to comment.