Message ID | 49FEDACC.9000605@in.ibm.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On 05/04/2009 03:08 PM, supriya kannery wrote: A commit-message is useful here. > Signed-off-by: Supriya Kannery<supriyak@in.ibm.com> > Cc : Michael Goldish<mgoldish@redhat.com> > > --- kvm-autotest-tap/client/tests/kvm_runtest_2/control 2009-05-04 17:03:20.000000000 +0530 > +++ kvm-autotest-tap/client/tests/kvm_runtest_2/control.mod 2009-05-04 17:02:52.000000000 +0530 > @@ -99,7 +99,8 @@ for dict in list: > dependencies_satisfied = False > break > if dependencies_satisfied: > - current_status = job.run_test("kvm_runtest_2", params=dict, tag=dict.get("shortname")) >+ test_iterations=int(dict.get("iterations",1)) Please leave a space following a comma, here ^ >+ current_status = job.run_test("kvm_runtest_2", params=dict, tag=dict.get("shortname"),iterations=test_iterations) Please use shorter lines. > else: > current_status = False > status_dict[dict.get("name")] = current_status Applied, with above mentioned changes. Thanks, Uri. -- To unsubscribe from this list: send the line "unsubscribe kvm" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
--- kvm-autotest-tap/client/tests/kvm_runtest_2/control 2009-05-04 17:03:20.000000000 +0530 +++ kvm-autotest-tap/client/tests/kvm_runtest_2/control.mod 2009-05-04 17:02:52.000000000 +0530 @@ -99,7 +99,8 @@ for dict in list: dependencies_satisfied = False break if dependencies_satisfied: - current_status = job.run_test("kvm_runtest_2", params=dict, tag=dict.get("shortname")) + test_iterations=int(dict.get("iterations",1)) + current_status = job.run_test("kvm_runtest_2", params=dict, tag=dict.get("shortname"),iterations=test_iterations) else: current_status = False status_dict[dict.get("name")] = current_status