forked from pool/build-compare
This commit is contained in:
parent
dbbbced610
commit
d7e70f80b2
@ -1,3 +1,24 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon May 4 15:19:04 CEST 2009 - coolo@suse.de
|
||||||
|
|
||||||
|
- compare content of *.tar too
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon May 4 14:17:07 CEST 2009 - coolo@suse.de
|
||||||
|
|
||||||
|
- if objdump fails, fall back to hexdump (bnc#489965)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon May 4 14:10:24 CEST 2009 - coolo@suse.de
|
||||||
|
|
||||||
|
- ignore dates in mo files (bnc#489198)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Apr 28 13:47:36 CEST 2009 - mmarek@suse.cz
|
||||||
|
|
||||||
|
- rpm-check.sh: add option --check-all to check all packaged files
|
||||||
|
(useful for debugging)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Feb 8 21:48:27 CET 2009 - coolo@suse.de
|
Sun Feb 8 21:48:27 CET 2009 - coolo@suse.de
|
||||||
|
|
||||||
|
@ -24,7 +24,7 @@ Group: Development/Tools/Building
|
|||||||
AutoReqProv: on
|
AutoReqProv: on
|
||||||
Summary: Build Result Compare Script
|
Summary: Build Result Compare Script
|
||||||
Version: 2009.01.27
|
Version: 2009.01.27
|
||||||
Release: 7
|
Release: 8
|
||||||
Source: same-build-result.sh
|
Source: same-build-result.sh
|
||||||
Source1: rpm-check.sh
|
Source1: rpm-check.sh
|
||||||
Source2: COPYING
|
Source2: COPYING
|
||||||
@ -54,6 +54,15 @@ install -m 0644 %SOURCE2 $RPM_BUILD_ROOT/%_defaultdocdir/%name/
|
|||||||
/usr/lib/build
|
/usr/lib/build
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon May 04 2009 coolo@suse.de
|
||||||
|
- compare content of *.tar too
|
||||||
|
* Mon May 04 2009 coolo@suse.de
|
||||||
|
- if objdump fails, fall back to hexdump (bnc#489965)
|
||||||
|
* Mon May 04 2009 coolo@suse.de
|
||||||
|
- ignore dates in mo files (bnc#489198)
|
||||||
|
* Tue Apr 28 2009 mmarek@suse.cz
|
||||||
|
- rpm-check.sh: add option --check-all to check all packaged files
|
||||||
|
(useful for debugging)
|
||||||
* Sun Feb 08 2009 coolo@suse.de
|
* Sun Feb 08 2009 coolo@suse.de
|
||||||
- fix handling of hardlinks to compressed files
|
- fix handling of hardlinks to compressed files
|
||||||
* Sat Feb 07 2009 coolo@suse.de
|
* Sat Feb 07 2009 coolo@suse.de
|
||||||
|
88
rpm-check.sh
88
rpm-check.sh
@ -7,8 +7,15 @@
|
|||||||
#
|
#
|
||||||
RPM="rpm -qp --nodigest --nosignature"
|
RPM="rpm -qp --nodigest --nosignature"
|
||||||
|
|
||||||
|
check_all=
|
||||||
|
case $1 in
|
||||||
|
-a | --check-all)
|
||||||
|
check_all=1
|
||||||
|
shift
|
||||||
|
esac
|
||||||
|
|
||||||
if test "$#" != 2; then
|
if test "$#" != 2; then
|
||||||
echo "usage: $0 old.rpm new.rpm"
|
echo "usage: $0 [-a|--check-all] old.rpm new.rpm"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@ -142,11 +149,22 @@ cd new
|
|||||||
cd ..
|
cd ..
|
||||||
|
|
||||||
dfile=`mktemp`
|
dfile=`mktemp`
|
||||||
ret=0
|
|
||||||
|
diff_two_files()
|
||||||
|
{
|
||||||
|
if ! cmp -s old/$file new/$file; then
|
||||||
|
echo "$file differs ($ftype)"
|
||||||
|
hexdump -C old/$file > $file1
|
||||||
|
hexdump -C new/$file > $file2
|
||||||
|
diff -u $file1 $file2 | head -n 200
|
||||||
|
return 1
|
||||||
|
fi
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
check_single_file()
|
check_single_file()
|
||||||
{
|
{
|
||||||
file=$1
|
local file=$1
|
||||||
case $file in
|
case $file in
|
||||||
*.spec)
|
*.spec)
|
||||||
sed -i -e "s,Release:.*$release1,Release: @RELEASE@," old/$file
|
sed -i -e "s,Release:.*$release1,Release: @RELEASE@," old/$file
|
||||||
@ -155,8 +173,7 @@ check_single_file()
|
|||||||
*.dll|*.exe)
|
*.dll|*.exe)
|
||||||
# we can't handle it well enough
|
# we can't handle it well enough
|
||||||
echo "mono files unhandled ($file)"
|
echo "mono files unhandled ($file)"
|
||||||
ret=1
|
return 1;;
|
||||||
break;;
|
|
||||||
*.a)
|
*.a)
|
||||||
flist=`ar t new/$file`
|
flist=`ar t new/$file`
|
||||||
pwd=$PWD
|
pwd=$PWD
|
||||||
@ -170,6 +187,25 @@ check_single_file()
|
|||||||
check_single_file $fdir/$f
|
check_single_file $fdir/$f
|
||||||
done
|
done
|
||||||
continue;;
|
continue;;
|
||||||
|
*.tar|*.tar.bz2|*.tar.gz|*.tgz|*.tbz2)
|
||||||
|
flist=`tar tf new/$file`
|
||||||
|
pwd=$PWD
|
||||||
|
fdir=`dirname $file`
|
||||||
|
cd old/$fdir
|
||||||
|
tar xf `basename $file`
|
||||||
|
cd $pwd/new/$fdir
|
||||||
|
tar xf `basename $file`
|
||||||
|
cd $pwd
|
||||||
|
local ret=0
|
||||||
|
for f in $flist; do
|
||||||
|
if ! check_single_file $fdir/$f; then
|
||||||
|
ret=1
|
||||||
|
if test -z "$check_all"; then
|
||||||
|
break
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
return $ret;;
|
||||||
*.pyc|*.pyo)
|
*.pyc|*.pyo)
|
||||||
perl -E "open fh, '+<', 'old/$file'; seek fh, 3, SEEK_SET; print fh '0000';"
|
perl -E "open fh, '+<', 'old/$file'; seek fh, 3, SEEK_SET; print fh '0000';"
|
||||||
perl -E "open fh, '+<', 'new/$file'; seek fh, 3, SEEK_SET; print fh '0000';"
|
perl -E "open fh, '+<', 'new/$file'; seek fh, 3, SEEK_SET; print fh '0000';"
|
||||||
@ -178,26 +214,36 @@ check_single_file()
|
|||||||
bunzip2 -c old/$file > old/${file/.bz2/}
|
bunzip2 -c old/$file > old/${file/.bz2/}
|
||||||
bunzip2 -c new/$file > new/${file/.bz2/}
|
bunzip2 -c new/$file > new/${file/.bz2/}
|
||||||
check_single_file ${file/.bz2/}
|
check_single_file ${file/.bz2/}
|
||||||
continue;;
|
return;;
|
||||||
*.gz)
|
*.gz)
|
||||||
gunzip -c old/$file > old/${file/.gz/}
|
gunzip -c old/$file > old/${file/.gz/}
|
||||||
gunzip -c new/$file > new/${file/.gz/}
|
gunzip -c new/$file > new/${file/.gz/}
|
||||||
check_single_file ${file/.gz/}
|
check_single_file ${file/.gz/}
|
||||||
continue;;
|
return;;
|
||||||
|
/usr/share/locale/*/LC_MESSAGES/*.mo|/usr/share/locale-bundle/*/LC_MESSAGES/*.mo)
|
||||||
|
sed -i -e "s,POT-Creation-Date: ....-..-.. ..:..+....,POT-Creation-Date: 1970-01-01 00:00+0000," old/$file
|
||||||
|
sed -i -e "s,POT-Creation-Date: ....-..-.. ..:..+....,POT-Creation-Date: 1970-01-01 00:00+0000," new/$file
|
||||||
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
ftype=`/usr/bin/file old/$file | cut -d: -f2-`
|
ftype=`/usr/bin/file old/$file | cut -d: -f2-`
|
||||||
case $ftype in
|
case $ftype in
|
||||||
*executable*|*LSB\ shared\ object*)
|
*executable*|*LSB\ shared\ object*)
|
||||||
objdump -d --no-show-raw-insn old/$file | filter_disasm > $file1
|
objdump -d --no-show-raw-insn old/$file | filter_disasm > $file1
|
||||||
|
if ! test -s $file1; then
|
||||||
|
# objdump has no idea how to handle it
|
||||||
|
if diff_two_files; then
|
||||||
|
ret=1
|
||||||
|
break
|
||||||
|
fi
|
||||||
|
fi
|
||||||
sed -i -e "s,old/,," $file1
|
sed -i -e "s,old/,," $file1
|
||||||
objdump -d --no-show-raw-insn new/$file | filter_disasm > $file2
|
objdump -d --no-show-raw-insn new/$file | filter_disasm > $file2
|
||||||
sed -i -e "s,new/,," $file2
|
sed -i -e "s,new/,," $file2
|
||||||
if ! diff -u $file1 $file2 > $dfile; then
|
if ! diff -u $file1 $file2 > $dfile; then
|
||||||
echo "$file differs in assembler output"
|
echo "$file differs in assembler output"
|
||||||
head -n 200 $dfile
|
head -n 200 $dfile
|
||||||
ret=1
|
return 1
|
||||||
break
|
|
||||||
fi
|
fi
|
||||||
objdump -s old/$file > $file1
|
objdump -s old/$file > $file1
|
||||||
sed -i -e "s,old/,," $file1
|
sed -i -e "s,old/,," $file1
|
||||||
@ -209,32 +255,32 @@ check_single_file()
|
|||||||
else
|
else
|
||||||
echo "WARNING: no idea about $file"
|
echo "WARNING: no idea about $file"
|
||||||
fi
|
fi
|
||||||
ret=1
|
return 1
|
||||||
break
|
|
||||||
;;
|
;;
|
||||||
*ASCII*|*text*)
|
*ASCII*|*text*)
|
||||||
if ! cmp -s old/$file new/$file; then
|
if ! cmp -s old/$file new/$file; then
|
||||||
echo "$file differs ($ftype)"
|
echo "$file differs ($ftype)"
|
||||||
diff -u old/$file new/$file | head -n 200
|
diff -u old/$file new/$file | head -n 200
|
||||||
ret=1
|
return 1
|
||||||
break
|
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
if ! cmp -s old/$file new/$file; then
|
if diff_two_files; then
|
||||||
echo "$file differs ($ftype)"
|
return 1
|
||||||
hexdump -C old/$file > $file1
|
|
||||||
hexdump -C new/$file > $file2
|
|
||||||
diff -u $file1 $file2 | head -n 200
|
|
||||||
ret=1
|
|
||||||
break
|
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
return 0
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ret=0
|
||||||
for file in $files; do
|
for file in $files; do
|
||||||
check_single_file $file
|
if ! check_single_file $file; then
|
||||||
|
ret=1
|
||||||
|
if test -z "$check_all"; then
|
||||||
|
break
|
||||||
|
fi
|
||||||
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
rm $file1 $file2 $dfile
|
rm $file1 $file2 $dfile
|
||||||
|
Loading…
x
Reference in New Issue
Block a user