summaryrefslogtreecommitdiffstats
path: root/testsuites/posca/testcase_script
diff options
context:
space:
mode:
authorYang Yu <Gabriel.yuyang@huawei.com>2018-05-08 14:22:17 +0800
committerYang Yu <Gabriel.yuyang@huawei.com>2018-05-08 14:22:17 +0800
commit68b91c0679550efe005278f8689b57bf14092ee1 (patch)
tree2e8f09cd6f2d4fd2d4fbcc542137ee2298658916 /testsuites/posca/testcase_script
parentcb67313c1e14b6eca057bdfc7722bc11506b7a2a (diff)
bug-fix: fix key error in soak throughputs CI
In the redundant information deleting patch, results of each thread running is removed from message Queue resulting in counting the overall success threads in error status Change-Id: I3d12ddcc3ef996fca509741544a0f088428e948e Signed-off-by: Yang Yu <Gabriel.yuyang@huawei.com>
Diffstat (limited to 'testsuites/posca/testcase_script')
-rw-r--r--testsuites/posca/testcase_script/posca_factor_soak_throughputs.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuites/posca/testcase_script/posca_factor_soak_throughputs.py b/testsuites/posca/testcase_script/posca_factor_soak_throughputs.py
index 6c6bd448..2fd35006 100644
--- a/testsuites/posca/testcase_script/posca_factor_soak_throughputs.py
+++ b/testsuites/posca/testcase_script/posca_factor_soak_throughputs.py
@@ -162,7 +162,7 @@ def run(test_config):
for wait_time in xrange(0, int(vim_pair_lazy_cre_delay)):
time.sleep(1)
while not q.empty():
- result.append(q.get()[1])
+ result.append(q.get())
for one_result in result:
if '0' == one_result[0]:
vim_pair_error = True
@@ -172,7 +172,7 @@ def run(test_config):
for one_thread in threadings:
one_thread.join()
while not q.empty():
- result.append(q.get()[1])
+ result.append(q.get())
for item in result:
vim_pair_success_num += int(item[0])