From mboxrd@z Thu Jan 1 00:00:00 1970 From: Lucas Meneghel Rodrigues Subject: [PATCH] unittest suite: Remove kvm/tests/guest_test.py from list of tests Date: Thu, 27 Jan 2011 21:08:33 -0200 Message-ID: <1296169713-24936-1-git-send-email-lmr@redhat.com> Cc: kvm@vger.kernel.org, Lucas Meneghel Rodrigues To: autotest@test.kernel.org Return-path: Received: from mx1.redhat.com ([209.132.183.28]:33307 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753755Ab1A0XIg (ORCPT ); Thu, 27 Jan 2011 18:08:36 -0500 Sender: kvm-owner@vger.kernel.org List-ID: 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 --- 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