We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bad038c commit 4f6a983Copy full SHA for 4f6a983
tools/errorid.sh
@@ -12,6 +12,7 @@ while read -r id; do
12
continue
13
fi
14
$SCRIPT_DIR/../cppcheck --errorlist | grep "id=\"$id\"" > /dev/null
15
+ # shellcheck disable=SC2181
16
if [ $? -ne 0 ]; then
17
echo $id
18
@@ -23,6 +24,7 @@ echo 'no test coverage:'
23
24
$SCRIPT_DIR/../cppcheck --errorlist | grep -h -o -P 'id=\"[a-zA-Z0-9_]*\"' | sed 's/\id=//' | tr -d '\"' | sort -u | \
25
while read -r id; do
26
grep -h -o -P "\[$id\]\\\\n\"" $SCRIPT_DIR/../test/*.cpp > /dev/null
27
28
29
30
0 commit comments