script used by ../Makefile to run matitac[.opt] on some tests. supports some
   options and prints out some informations neded my insert
 
-insert.awk  
-  creates the SQL INSERT statements for the output of profile_cvs.sh
-
 profile_svn.sh
   SVN co, compilation, run
 
 
+++ /dev/null
- {
-       result=tolower($3);
-       if( $1 ~ ".opt$" )
-               compilation="opt"
-       else
-               compilation="byte"
-       test=$2 
-       time=$4
-       timeuser=$5
-       mark=$7
-       if ( $8 ~ "^gc-off$") 
-               options="'gc-off'";
-       if ( $8 ~ "^gc-on$") 
-               options="'gc-on'"
-               
-       printf "INSERT bench (result, compilation, test, time, timeuser, mark, options) VALUES ('%s', '%s', '%s', '%s', '%s', '%s', %s);\n", result, compilation, test, time, timeuser, mark, options;
-       }