X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fsoftware%2Fmatita%2Fscripts%2Fpublic_html%2Fbench.php;fp=helm%2Fsoftware%2Fmatita%2Fscripts%2Fpublic_html%2Fbench.php;h=330912c511a5460f31f4dbfb770f35176045d5ba;hb=6805316d54eff18f5afbc712093c80421f2ddb18;hp=eeb3f237b080d7f2da5157caa849371764750956;hpb=39fefad297823c08d3f4600778c9cbf7e3626647;p=helm.git diff --git a/helm/software/matita/scripts/public_html/bench.php b/helm/software/matita/scripts/public_html/bench.php index eeb3f237b..330912c51 100644 --- a/helm/software/matita/scripts/public_html/bench.php +++ b/helm/software/matita/scripts/public_html/bench.php @@ -32,7 +32,7 @@ Whole content: @@@ select * from bench order by mark desc***"); -$query_diff = urlencode(" +$query_time_diff = urlencode(" Time diff: @@@ select @@ -49,6 +49,22 @@ where ABS(b2.timeuser - b1.timeuser) > 100 order by diff desc***"); +$query_result_diff = urlencode(" +Result diff: +@@@ +select + b1.test as test, b1.result as oldresult, b2.result as newresult, b1.timeuser as oldtime, b2.timeuser as newtime, b1.compilation as comp, b1.options as opts, + (b2.timeuser - b1.timeuser) as diff +from + bench as b1, bench as b2 +where + b1.test = b2.test and + b1.options = b2.options and + b1.compilation = b2.compilation and + b1.result <> b2.result and + b1.mark = '$before_last_mark' and b2.mark= '$last_mark' +order by test desc***"); + $query_fail = urlencode(" Number of failures @@@ @@ -255,7 +271,8 @@ function links_of($name,$q,$limits){