Add error message to shed light on why this sometimes fails

This commit is contained in:
Bob Lantz
2016-02-02 23:32:03 -08:00
parent 336958352a
commit e113f8ed12
+3 -1
View File
@@ -40,7 +40,9 @@ class testCPU( unittest.TestCase ):
if sched not in scheds:
scheds.append( sched )
else:
self.assertTrue( bw < previous_bw )
self.assertTrue( bw < previous_bw,
"%f should be less than %f\n" %
( bw, previous_bw ) )
previous_bw = bw
else:
break