Only use 80 hosts for linearbandwidth.py for now

In the long run, we should debug the performance issues
with kvm and Ubuntu 15. For now, however, we're relaxing
the constraints.

Closes #594
This commit is contained in:
Bob Lantz
2016-01-26 15:40:59 -08:00
parent 5dc15aeaaf
commit 336958352a
+1 -1
View File
@@ -121,6 +121,6 @@ def linearBandwidthTest( lengths ):
if __name__ == '__main__':
lg.setLogLevel( 'info' )
sizes = [ 1, 10, 20, 40, 60, 80, 100 ]
sizes = [ 1, 10, 20, 40, 60, 80 ]
print "*** Running linearBandwidthTest", sizes
linearBandwidthTest( sizes )