[svn] / ecrypt / trunk / scripts / collect  

svn: ecrypt/trunk/scripts/collect

Diff for /ecrypt/trunk/scripts/collect between version 87 and 88

version 87, Mon Aug 22 08:26:23 2005 UTC version 88, Mon Aug 22 20:50:00 2005 UTC
Line 20 
Line 20 
 <html xmlns="http://www.w3.org/1999/xhtml">  <html xmlns="http://www.w3.org/1999/xhtml">
 <head>  <head>
   <title>$1</title>    <title>$1</title>
   <link href="$root/scripts/results.css" rel="stylesheet" type="text/css"/>    <link href="$2" rel="stylesheet" type="text/css"/>
 </head>  </head>
 <body>  <body>
   <table>    <table>
Line 51 
Line 51 
 EOF  EOF
 }  }
   
   find_css ()
   {
       css="results.css";
   
       while [ "$PWD" != "/" ] && [ ! -r "results.css" ]; do
           cd ..;
           css="../$css";
       done
   
       echo "$css";
   }
   
 # -----------------------------------------------------------------------------  # -----------------------------------------------------------------------------
   
 dir=$1;  dir=$1;
Line 63 
Line 75 
   
     status 1 "collecting results";      status 1 "collecting results";
   
     make_header "Results" > index.html;      cp "$root/scripts/results.css" .;
       make_header "Results" $(find_css) > index.html;
   
     find $dir -type d | while read dir; do      find $dir -type d | while read dir; do
         (          (
Line 71 
Line 84 
   
             ls speed_* &> /dev/null || exit;              ls speed_* &> /dev/null || exit;
   
             make_header "Results" > index.html;              make_header "Results" $(find_css) > index.html;
   
             first=true;              first=true;
             "$root/scripts/tabulate" speed_* | sort -n | while read line; do              "$root/scripts/tabulate" speed_* | sort -n | while read line; do


Generate output suitable for use with a patch program
Legend:
Removed from v.87  
changed lines
  Added in v.88

eSTREAM Project

Powered by ViewCVS 1.0-dev
(Powered by Apache)

ViewCVS and CVS Help