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:
Manuel López-Ibáñez 2012-04-24 07:22:41 +00:00
parent a1e179f5b7
commit af13465ffb
2 changed files with 7 additions and 2 deletions

View File

@ -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

View File

@ -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"