Open GoogleCodeExporter opened 8 years ago
thanks for reporting, I'll look into it soon
Original comment by lukas.l...@gmail.com
on 7 Apr 2011 at 7:30
It's a stupid bug caused by the PerformanceCounter-class. It will be fixed in
next upstream-version.
The test "testBenchmark" runs the benchmark for three seconds normally executed
by the client for sixty seconds. The test triggers a bug in
PerformanceCounter-class because there are no results after three seconds of
execution (due to the slow mipsel-system).
You can increase the timeout to e.g. 10 seconds which should fix the situation
but increase cpu-consumption for running the test. You can also simply patch
the line
"if t - self.datapoints[0][0] > self.window"
to read
"if len(self.datapoints) > 0 and t - self.datapoints[0][0] > self.window"
Original comment by lukas.l...@gmail.com
on 11 Apr 2011 at 7:34
Makes sense -- I guess we'll just increase the timeout for our build runs then.
Thanks for the quick explanation!
Original comment by debian.k...@gmail.com
on 12 Apr 2011 at 9:56
Original issue reported on code.google.com by
debian.k...@gmail.com
on 6 Apr 2011 at 9:38