Skip to content

Commit

Permalink
Fix get_code_cov script style
Browse files Browse the repository at this point in the history
  • Loading branch information
richelbilderbeek committed Nov 2, 2023
1 parent 1784ea1 commit 41bc64d
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions scripts/get_code_cov.sh
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
#!/bin/bash

cp debug/*.gcda .
cp debug/*.gcno .

for filename in $(find . | egrep '\.cpp$');
for filename in $(find . | grep -E '\.cpp$')
do
gcov -n -o . $filename > /dev/null;
gcov -n -o . "${filename}" > /dev/null
done

0 comments on commit 41bc64d

Please sign in to comment.