Changeset fb08c47 in mainline
- Timestamp:
- 2018-03-29T12:43:07Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 483a3f4, ccea254
- Parents:
- f303afc6
- git-author:
- Jiri Svoboda <jiri@…> (2018-03-28 17:41:48)
- git-committer:
- Jiri Svoboda <jiri@…> (2018-03-29 12:43:07)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tools/ccheck.sh
rf303afc6 rfb08c47 39 39 snorepcnt=0 40 40 fcnt=0 41 exitfile="$(mktemp)" 42 echo 0 >"$exitfile" 41 43 42 44 find abi kernel boot uspace -type f -regex '^.*\.[ch]$' | ( … … 48 50 if [ -s "$outfile" ] ; then 49 51 srepcnt=$((srepcnt + 1)) 50 cat "$outfile" 52 #cat "$outfile" 53 echo "$fname has issues" 51 54 else 52 55 snorepcnt=$((snorepcnt + 1)) … … 54 57 else 55 58 fcnt=$((fcnt + 1)) 59 cat "$outfile" 60 echo 1 > "$exitfile" 56 61 fi 57 62 … … 63 68 echo "Not checked files: $fcnt" 64 69 ) 70 71 exitcode=$(cat "$exitfile") 72 rm -rf "$exitfile" 73 74 exit $exitcode
Note:
See TracChangeset
for help on using the changeset viewer.