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
parent a1e179f5
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"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment