On 05/31/2009 10:24 PM, Lucas Meneghel Rodrigues wrote:
The test was just commited. Stage 1 of the upstream merge complete.

Please let me know if you have any doubts. Happy hacking!

Please credit Dror Russo for his contribution (see below).
Dror has been contributing since kvm-autotest early days.

Thanks,
    Uri.


On Fri, 2009-05-29 at 14:58 -0300, Lucas Meneghel Rodrigues wrote:
After some conversations, we decided to rename kvm_runtest_2 to kvm.
Also, corrected some small mistakes I've done on the first patches.

Hopefully, things are good to go. From the feedback I've got on the IRC
channel, people are happy with the current state of the test. I am going
to commit it if nobody pronounces against it :)

From: Uri Lublin ([email protected])

          Dror Russo ([email protected])

       Michael Goldish ([email protected])
       David Huff ([email protected])
       Alexey Eromenko ([email protected])
       Mike Burns ([email protected])

Signed-off-by: Lucas Meneghel Rodrigues<[email protected]>

Index: trunk/client/tests/kvm/control
===================================================================
--- trunk/client/tests/kvm/control      (revision 0)
+++ trunk/client/tests/kvm/control      (revision 0)
@@ -0,0 +1,155 @@
+AUTHOR = """
[email protected] (Uri Lublin)

   [email protected] (Dror Russo)

[email protected] (Michael Goldish)
[email protected] (David Huff)
[email protected] (Alexey Eromenko)
[email protected] (Mike Burns)
+"""



Index: trunk/client/tests/kvm/make_html_report.py
===================================================================
--- trunk/client/tests/kvm/make_html_report.py  (revision 0)
+++ trunk/client/tests/kvm/make_html_report.py  (revision 0)
@@ -0,0 +1,1735 @@
+#!/usr/bin/python
+"""
+Script used to parse the test results and generate an HTML report.
+
+...@copyright: (c)2005-2007 Matt Kruse (javascripttoolbox.com)
+...@copyright: Red Hat 2008-2009

   +...@author: [email protected] (Dror Russo)


Index: trunk/client/tests/kvm/kvm.py
===================================================================
--- trunk/client/tests/kvm/kvm.py       (revision 0)
+++ trunk/client/tests/kvm/kvm.py       (revision 0)
@@ -0,0 +1,109 @@
+import sys, os, time, shelve, random, resource, logging
+from autotest_lib.client.bin import test
+from autotest_lib.client.common_lib import error
+
+
+class test_routine:
+    def __init__(self, module_name, routine_name):
+        self.module_name = module_name
+        self.routine_name = routine_name
+        self.routine = None
+
+
+class kvm(test.test):
+    """
+    Suite of KVM virtualization functional tests.
+    Contains tests for testing both KVM kernel code and userspace code.
+
+    @copyright: Red Hat 2008-2009
+    @author: Uri Lublin ([email protected])

   +    @author: Dror Russo ([email protected])

+    @author: Michael Goldish ([email protected])
+    @author: David Huff ([email protected])
+    @author: Alexey Eromenko ([email protected])
+    @author: Mike Burns ([email protected])
+    """

--
To unsubscribe from this list: send the line "unsubscribe kvm" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to