Changes in / [fd68aaf:c9e09f2] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tools/ccheck.sh
rfd68aaf rc9e09f2 36 36 find abi kernel boot uspace -type f -regex '^.*\.[ch]$' | ( 37 37 while read fname; do 38 outfile="$(mktemp)" 39 $ccheck $fname >"$outfile" 2>&1 38 $ccheck $fname >/tmp/ccheck.out 2>&1 40 39 rc=$? 41 40 if [ .$rc == .0 ]; then 42 if [ -s "$outfile"] ; then41 if [ -s /tmp/ccheck.out ] ; then 43 42 srepcnt=$((srepcnt + 1)) 44 cat "$outfile" 43 echo '**' Reports for file $fname: '**' 44 cat /tmp/ccheck.out 45 45 else 46 46 snorepcnt=$((snorepcnt + 1)) … … 49 49 fcnt=$((fcnt + 1)) 50 50 fi 51 52 rm -f "$outfile"53 51 done 54 52
Note:
See TracChangeset
for help on using the changeset viewer.