mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-11-25 21:28:53 +08:00
compare_tests: Append '/' to make 'find' traverse symlinked directories.
2012-04-23 Manuel López-Ibáñez <manu@gcc.gnu.org> contrib/ * compare_tests: Append '/' to make 'find' traverse symlinked directories. From-SVN: r186750
This commit is contained in:
parent
a1e179f5b7
commit
af13465ffb
@ -1,3 +1,8 @@
|
||||
2012-04-23 Manuel López-Ibáñez <manu@gcc.gnu.org>
|
||||
|
||||
* compare_tests: Append '/' to make 'find' traverse
|
||||
symlinked directories.
|
||||
|
||||
2012-04-16 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
|
||||
|
||||
* testsuite-management/validate_failures.py (GetBuildData): Use
|
||||
|
@ -55,8 +55,8 @@ trap "rm -f $tmps" 0 1 2 3 5 9 13 15
|
||||
exit_status=0
|
||||
|
||||
if [ -d "$1" -a -d "$2" ] ; then
|
||||
find "$1" -name '*.sum' >$lst1
|
||||
find "$2" -name '*.sum' >$lst2
|
||||
find "$1/" -name '*.sum' >$lst1
|
||||
find "$2/" -name '*.sum' >$lst2
|
||||
echo "# Comparing directories"
|
||||
echo "## Dir1=$1: `cat $lst1 | wc -l` sum files"
|
||||
echo "## Dir2=$2: `cat $lst2 | wc -l` sum files"
|
||||
|
Loading…
Reference in New Issue
Block a user