diff mbox

[KVM-AUTOTEST] Enable running test(s) multiple times (iterations)

Message ID 1244718925-24670-2-git-send-email-uril@redhat.com (mailing list archive)
State New, archived
Headers show

Commit Message

Uri Lublin June 11, 2009, 11:15 a.m. UTC
From: Supriya Kannery <supriyak@in.ibm.com>

Default is to run each test once.

Just add iterations = N in kvm_tests.cfg to the test(s) you
want to run multiple times.

Signed-off-by: Supriya Kannery <supriyak@in.ibm.com>
Cc : Michael Goldish <mgoldish@redhat.com>
Signed-off-by: Uri Lublin <uril@redhat.com>
---
 client/tests/kvm/control |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

Comments

Lucas Meneghel Rodrigues June 12, 2009, 7:43 p.m. UTC | #1
On Thu, 2009-06-11 at 14:15 +0300, Uri Lublin wrote:
> From: Supriya Kannery <supriyak@in.ibm.com>
> 
> Default is to run each test once.
> 
> Just add iterations = N in kvm_tests.cfg to the test(s) you
> want to run multiple times.
> 
> Signed-off-by: Supriya Kannery <supriyak@in.ibm.com>
> Cc : Michael Goldish <mgoldish@redhat.com>
> Signed-off-by: Uri Lublin <uril@redhat.com>
> ---
>  client/tests/kvm/control |    4 +++-
>  1 files changed, 3 insertions(+), 1 deletions(-)
> 
> diff --git a/client/tests/kvm/control b/client/tests/kvm/control
> index b3543ee..c030a14 100644
> --- a/client/tests/kvm/control
> +++ b/client/tests/kvm/control
> @@ -145,8 +145,10 @@ for dict in list:
>                  dependencies_satisfied = False
>                  break
>      if dependencies_satisfied:
> +        test_iterations=int(dict.get("iterations", 1))
>          current_status = job.run_test("kvm", params=dict,
> -                                      tag=dict.get("shortname"))
> +                                      tag=dict.get("shortname"),
> +                                      iterations=test_iterations)
>      else:
>          current_status = False
>      status_dict[dict.get("name")] = current_status

Looks good to me, applied. Thanks!
diff mbox

Patch

diff --git a/client/tests/kvm/control b/client/tests/kvm/control
index b3543ee..c030a14 100644
--- a/client/tests/kvm/control
+++ b/client/tests/kvm/control
@@ -145,8 +145,10 @@  for dict in list:
                 dependencies_satisfied = False
                 break
     if dependencies_satisfied:
+        test_iterations=int(dict.get("iterations", 1))
         current_status = job.run_test("kvm", params=dict,
-                                      tag=dict.get("shortname"))
+                                      tag=dict.get("shortname"),
+                                      iterations=test_iterations)
     else:
         current_status = False
     status_dict[dict.get("name")] = current_status