summaryrefslogtreecommitdiffstats
path: root/testsuites/posca
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/posca')
-rw-r--r--testsuites/posca/testcase_script/posca_factor_ping.py12
1 files changed, 5 insertions, 7 deletions
diff --git a/testsuites/posca/testcase_script/posca_factor_ping.py b/testsuites/posca/testcase_script/posca_factor_ping.py
index b212971d..9b3e0a1f 100644
--- a/testsuites/posca/testcase_script/posca_factor_ping.py
+++ b/testsuites/posca/testcase_script/posca_factor_ping.py
@@ -70,21 +70,19 @@ def do_test():
LOG.info(stdout)
out_value = 0
loop_walue = 0
- while loop_walue < 150:
+ while loop_walue < 60:
time.sleep(2)
loop_walue = loop_walue + 1
with open(out_file) as f:
data = json.load(f)
if data["status"] == 1:
- if data["result"]["criteria"] == "PASS":
- LOG.info("yardstick run success")
- out_value = 1
- else:
- LOG.error("task error exit")
- out_value = 0
+ LOG.info("yardstick run success")
+ out_value = 1
break
elif data["status"] == 2:
LOG.error("yardstick error exit")
+ out_value = 0
+ break
q.put((out_value, func_name))
return out_value
'n155' href='#n155'>155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192