image72 / browserscope

Automatically exported from code.google.com/p/browserscope
Apache License 2.0
0 stars 0 forks source link

Explore why Firefox 3.5 w/ 10/11 gets an 8 score #78

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
I suspect it's to do with the value for total_tests being diff from 
total_valid_tests there..

Original issue reported on code.google.com by els...@gmail.com on 13 Sep 2009 at 8:21

GoogleCodeExporter commented 9 years ago
So I added a logging line to the GetRowScore for network, and FF 3.5 has:
logging.info('%s, %s, %s' % (total_score, total_tests, total_valid_tests))
10, 12, 11 respectively.

score = int(round(100 * total_score / total_tests))

aka 10/12.

I think something is funny here, because there are only 11 tests visible in the 
table 
at all. It looks like it's counting the non-visible CheckLatency test.
That test is marked with is_hidden_stat, so I think this is the right course of 
action, but I don't recall the history, so I'm going to reassign to you Steve, 
and I 
think we're ok for now, so I'll lose the Launch blocker.
I'm going to hide that from the row scorer, and if that's wrong, let me know.

Original comment by els...@gmail.com on 13 Sep 2009 at 9:52