diff options
author | Manuel Buil <manuel.buil@ericsson.com> | 2016-11-14 11:54:06 +0100 |
---|---|---|
committer | Manuel Buil <manuel.buil@ericsson.com> | 2016-11-14 11:54:06 +0100 |
commit | 965e9e6445599461c63fd1500ea0d0d198174347 (patch) | |
tree | c32902482dcf4b30dcd9cefa600ba6342acb9005 /functest/opnfv_tests/features | |
parent | 0e9edad4ab6019b72acdc942e6190b74c4af62f4 (diff) |
Bug fix odl-sfc
I was not taking into account the case where the returned list is empty
Change-Id: I533ea8fbc286cb564dccec06750cd1a8bbcf52f9
Signed-off-by: Manuel Buil <manuel.buil@ericsson.com>
Diffstat (limited to 'functest/opnfv_tests/features')
-rwxr-xr-x | functest/opnfv_tests/features/sfc/sfc.py | 23 |
1 files changed, 14 insertions, 9 deletions
diff --git a/functest/opnfv_tests/features/sfc/sfc.py b/functest/opnfv_tests/features/sfc/sfc.py index 42fac561..e048d90f 100755 --- a/functest/opnfv_tests/features/sfc/sfc.py +++ b/functest/opnfv_tests/features/sfc/sfc.py @@ -414,15 +414,20 @@ def capture_time_log(compute_clients): while True: rsps = ovs_logger.ofctl_time_counter(compute_clients[0]) if not i: - first_RSP = rsps[0] - i = i + 1 - if(first_RSP != rsps[0] and len(rsps) > 1): - if (rsps[0] == rsps[1]): - stop_time = time.time() - logger.info("classification rules updated") - difference = stop_time - start_time - logger.info("It took %s seconds" % difference) - break + if len(rsps) > 0: + first_RSP = rsps[0] + i = i + 1 + else: + first_RSP = 0 + i = i + 1 + if (len(rsps) > 1): + if(first_RSP != rsps[0]): + if (rsps[0] == rsps[1]): + stop_time = time.time() + logger.info("classification rules updated") + difference = stop_time - start_time + logger.info("It took %s seconds" % difference) + break time.sleep(1) return |