rbb 2004/03/10 14:00:17
Modified: build run-gcov.sh
Log:
Sort the files by name.
Revision Changes Path
1.6 +1 -1 apr/build/run-gcov.sh
Index: run-gcov.sh
===================================================================
RCS file: /home/cvs/apr/build/run-gcov.sh,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- run-gcov.sh 10 Mar 2004 19:40:16 -0000 1.5
+++ run-gcov.sh 10 Mar 2004 22:00:16 -0000 1.6
@@ -85,7 +85,7 @@
<table border="0" width="100%" cellspacing="0">
EOF
-for i in `find .. -name "*.bb" -maxdepth 1`; do
+for i in `find .. -name "*.bb" -maxdepth 1 | sort`; do
percent=`gcov $i -o .. | grep "%" | awk -F'%' {'print $1'}`
name=`echo $i | awk -F'/' {'print $2'}`
basename=`echo $name | awk -F'.' {'print $1'}`