From patchwork Thu Jan 27 23:08:33 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Lucas Meneghel Rodrigues X-Patchwork-Id: 513411 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter1.kernel.org (8.14.4/8.14.3) with ESMTP id p0RN8exb020467 for ; Thu, 27 Jan 2011 23:08:40 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753863Ab1A0XIh (ORCPT ); Thu, 27 Jan 2011 18:08:37 -0500 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 Received: from int-mx12.intmail.prod.int.phx2.redhat.com (int-mx12.intmail.prod.int.phx2.redhat.com [10.5.11.25]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id p0RN8Znk032658 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Thu, 27 Jan 2011 18:08:35 -0500 Received: from freedom.redhat.com (vpn-9-195.rdu.redhat.com [10.11.9.195]) by int-mx12.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id p0RN8YMG006558; Thu, 27 Jan 2011 18:08:34 -0500 From: Lucas Meneghel Rodrigues To: autotest@test.kernel.org Cc: kvm@vger.kernel.org, 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> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.25 Sender: kvm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: kvm@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.6 (demeter1.kernel.org [140.211.167.41]); Thu, 27 Jan 2011 23:08:40 +0000 (UTC) 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())