kvm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] unittest suite: Remove kvm/tests/guest_test.py from list of tests
@ 2011-01-27 23:08 Lucas Meneghel Rodrigues
  0 siblings, 0 replies; only message in thread
From: Lucas Meneghel Rodrigues @ 2011-01-27 23:08 UTC (permalink / raw)
  To: autotest; +Cc: kvm, Lucas Meneghel Rodrigues

Turns out this particular file is not a unittest, although
it has a name that complies with the pattern the unittest
script looks for.

Signed-off-by: Lucas Meneghel Rodrigues <lmr@redhat.com>
---
 utils/unittest_suite.py |    7 ++++++-
 1 files changed, 6 insertions(+), 1 deletions(-)

diff --git a/utils/unittest_suite.py b/utils/unittest_suite.py
index 850371c..78a9602 100755
--- a/utils/unittest_suite.py
+++ b/utils/unittest_suite.py
@@ -66,6 +66,11 @@ LONG_RUNTIME = set((
     'logging_manager_test.py',
     ))
 
+# This particular KVM autotest test is not a unittest
+SKIP = set((
+    'guest_test.py',
+    ))
+
 LONG_TESTS = (REQUIRES_DJANGO |
               REQUIRES_MYSQLDB |
               REQUIRES_GWT |
@@ -108,7 +113,7 @@ def run_test(mod_names, options):
 def scan_for_modules(start, options):
     modules = []
 
-    skip_tests = set()
+    skip_tests = SKIP
     if options.skip_tests:
         skip_tests.update(options.skip_tests.split())
 
-- 
1.7.3.5


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2011-01-27 23:08 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-01-27 23:08 [PATCH] unittest suite: Remove kvm/tests/guest_test.py from list of tests Lucas Meneghel Rodrigues

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).