OSDN Git Service

Usischev Yury pointed out that id shouldn't use exit() directly.
[android-x86/external-toybox.git] / scripts / bloatcheck
index 03606b2..fff4690 100755 (executable)
@@ -27,7 +27,7 @@ do_bloatcheck()
   echo "-----------------------------------------------------------------------"
   while read a b c d
   do
-    THISNAME=$(echo " $d" | sed 's/[.][0-9]*$//')
+    THISNAME=$(echo "$d" | sed 's/[.][0-9]*$//')
 
     if [ "$LASTNAME" != "$THISNAME" ]
     then
@@ -40,7 +40,7 @@ do_bloatcheck()
     fi
 
     SIZE=$(printf "%d" "0x$b")
-    if [ "$a" == "<" ]
+    if [ "$a" == "-" ]
     then
       OLD=$(($OLD+$SIZE))
       SIZE=$((-1*$SIZE))
@@ -58,6 +58,10 @@ do_bloatcheck()
   printf "% 71d total\n" "$TOTAL"
 }
 
-diff <(nm --size-sort "$1" | sort -k3,3) \
-     <(nm --size-sort "$2" | sort -k3,3) | grep '^[<>]' | sort -k4,4 | \
-     do_bloatcheck
+DIFF1=`mktemp base.XXXXXXX`
+DIFF2=`mktemp bloat.XXXXXXX`
+trap "rm $DIFF1 $DIFF2" EXIT
+nm --size-sort "$1" | sort -k3,3 > $DIFF1
+nm --size-sort "$2" | sort -k3,3 > $DIFF2
+diff -U 0 $DIFF1 $DIFF2 | tail -n +3 | sed -n 's/^\([-+]\)/\1 /p' \
+  | sort -k4,4 | do_bloatcheck