Need to relax the constraints on rtt_min and rtt_max in the machine files, since it's very 
easy to fail these constraints, and the distribution of these values (especially rtt_max) 
is still too large to allow a meaningful constraint.

Signed-off-by: Travis Miller <raphtee@google.com>



git-svn-id: http://test.kernel.org/svn/autotest/trunk@2738 592f7852-d20e-0410-864c-8624ca9c26a4
diff --git a/client/bin/net/basic_machine.py b/client/bin/net/basic_machine.py
index 590c9af..4d024cc 100755
--- a/client/bin/net/basic_machine.py
+++ b/client/bin/net/basic_machine.py
@@ -12,10 +12,9 @@
 
 
 FLOODPING_NUMPKTS = 100000
-FLOODPING_CONSTRAINTS = ["rtt_max < 0.2",
+FLOODPING_CONSTRAINTS = ["rtt_max < 1.0",
                          "rtt_min < 0.05",
-                         "rtt_avg < .06",
-                         "rtt_mdev < .02",
+                         "rtt_avg < .06"
                         ]
 
 PKT_SIZES = [64, 128, 256, 512, 1024, 1280, 1518]