commit | 0f87486c841d67a201fb020ad04509547c595c97 | [log] [tgz] |
---|---|---|
author | YPZhang <yunpeng@onlab.us> | Wed Apr 27 11:14:10 2016 -0700 |
committer | YPZhang <yunpeng@onlab.us> | Wed Apr 27 11:14:10 2016 -0700 |
tree | 9ebcd4eb9c4b3fe9eeb5a15be5ae5a68a2dc1cfd | |
parent | 6f07ea92caab0714a0f6282cac1c1fa03dcd4d03 [diff] |
Reduce the sleep time when send Arping package - Sleep 1 second will cause this test take too long time Change-Id: I3d387a8e97221968bf8192cbc6f8a43f595b9016
diff --git a/TestON/tests/SCPF/SCPFscaleTopo/dependencies/topo.py b/TestON/tests/SCPF/SCPFscaleTopo/dependencies/topo.py index f1101fe..4f7bfb7 100644 --- a/TestON/tests/SCPF/SCPFscaleTopo/dependencies/topo.py +++ b/TestON/tests/SCPF/SCPFscaleTopo/dependencies/topo.py
@@ -109,7 +109,7 @@ threads = [] for h in hostList: main.Mininet1.arping( srcHost=h, dstHost="10.0.0.1", output=main.FALSE, noResult=True ) - time.sleep(1) + time.sleep(0.5) else: main.Mininet1.arping(srcHost=hostList) summaryStr = json.loads( main.CLIs[0].summary().encode() )