You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by gs...@apache.org on 2011/04/16 08:16:34 UTC

svn commit: r1093931 - /subversion/trunk/tools/dev/benchmarks/suite1/run

Author: gstein
Date: Sat Apr 16 06:16:33 2011
New Revision: 1093931

URL: http://svn.apache.org/viewvc?rev=1093931&view=rev
Log:
Minor edits

* tools/dev/benchmarks/suite1/run:
  (ORIGINAL_PATH): removed. no longer used.
  (): switch plain 'echo' calls to echo "" (a slight, possibly useless
    portability tweak)

Modified:
    subversion/trunk/tools/dev/benchmarks/suite1/run

Modified: subversion/trunk/tools/dev/benchmarks/suite1/run
URL: http://svn.apache.org/viewvc/subversion/trunk/tools/dev/benchmarks/suite1/run?rev=1093931&r1=1093930&r2=1093931&view=diff
==============================================================================
--- subversion/trunk/tools/dev/benchmarks/suite1/run (original)
+++ subversion/trunk/tools/dev/benchmarks/suite1/run Sat Apr 16 06:16:33 2011
@@ -28,8 +28,6 @@ mkdir "$parent"
 cd "$parent"
 pwd
 
-ORIGINAL_PATH="$PATH"
-
 
 batch(){
   levels="$1"
@@ -65,27 +63,27 @@ cs=100
 {
 started="$(date)"
 echo "Started at $started"
-echo 
+echo ""
 
 batch $al $as $N
 batch $bl $bs $N
 batch $cl $cs $N
 
-echo
+echo ""
 echo =========================================================================
-echo
+echo ""
 echo "calculating total of 1.6..."
 "$benchmark" combine total_1.6 *x*_1.6
 
-echo
+echo ""
 echo "calculating total of trunk..."
 "$benchmark" combine total_trunk *x*_trunk
 
-echo
+echo ""
 echo "comparing averaged totals..."
 "$benchmark" compare total_1.6 total_trunk
 
-echo
+echo ""
 echo "Had started at $started,"
 echo "       done at $(date)"
 pwd