From patchwork Thu Oct 9 15:50:52 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Wood X-Patchwork-Id: 5059031 Return-Path: X-Original-To: patchwork-intel-gfx@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 9C633C11AC for ; Thu, 9 Oct 2014 15:51:01 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id C627A2018E for ; Thu, 9 Oct 2014 15:51:00 +0000 (UTC) Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) by mail.kernel.org (Postfix) with ESMTP id D064C2017D for ; Thu, 9 Oct 2014 15:50:59 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 4B6886E37F; Thu, 9 Oct 2014 08:50:59 -0700 (PDT) X-Original-To: intel-gfx@lists.freedesktop.org Delivered-To: intel-gfx@lists.freedesktop.org Received: from mail-wi0-f173.google.com (mail-wi0-f173.google.com [209.85.212.173]) by gabe.freedesktop.org (Postfix) with ESMTP id 3B4FA89C19 for ; Thu, 9 Oct 2014 08:50:57 -0700 (PDT) Received: by mail-wi0-f173.google.com with SMTP id fb4so13599400wid.6 for ; Thu, 09 Oct 2014 08:50:56 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id; bh=nSPKHaiLkO0aAu7KgjR/x+N0uYhMS1dMrgCqJ7L8wsA=; b=AK8y78zmW/KWlQL2KImWhRhbzmcwbW/RfMLGCHqIr5/38NYsG+q19o6K/Q8wKj8brL AhdTNvbwVqJ/vIU1iB0raa7DnPlMlDBqO3qUI/glgEBB+w352vpHUL+t7JjfwJQwcFwx MBH2dM8+2FaVZNw8MgVpz5ZPe9H+UeM9ygE0r9PzhQhJXs+dib55GX5gU88O/wnHpYc9 IBxP8N+aXJTLqtRyfklEYWPiNtaf8FUeuYZEp5h87Fq/ggpB5sDKbmdNBC76yQZoi9aS 1dH835XjK9KrPM/70AdUe0FlJCUUrXENEXY376p0qegI86XX9d+wZh500CrjD6MPDzXi ZAyw== X-Gm-Message-State: ALoCoQk7wCbqUNKxH/Fvw4LsyehFOf5Smn9XhDeOjEXwo5v2UiC85mPHaOGevunC8QiFmgs3O1FE X-Received: by 10.194.206.103 with SMTP id ln7mr19109174wjc.30.1412869856397; Thu, 09 Oct 2014 08:50:56 -0700 (PDT) Received: from pistachio.icx.intel.com ([83.217.123.106]) by mx.google.com with ESMTPSA id cy10sm3972329wjb.21.2014.10.09.08.50.55 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 09 Oct 2014 08:50:55 -0700 (PDT) From: Thomas Wood To: intel-gfx@lists.freedesktop.org Date: Thu, 9 Oct 2014 16:50:52 +0100 Message-Id: <1412869853-7689-1-git-send-email-thomas.wood@intel.com> X-Mailer: git-send-email 2.1.0 Subject: [Intel-gfx] [PATCH i-g-t 1/2] tests/kms_force_connector: ensure igt_exit is called at exit X-BeenThere: intel-gfx@lists.freedesktop.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: Intel graphics driver community testing & development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: intel-gfx-bounces@lists.freedesktop.org Sender: "Intel-gfx" X-Spam-Status: No, score=-4.2 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_MED, T_RP_MATCHES_RCVD,UNPARSEABLE_RELAY autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Since commit 5782eca (lib/igt_core.c: disable lowmemorykiller during tests), igt_exit needs to be called before the test exits. Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=84771 Cc: Tim Gore Signed-off-by: Thomas Wood --- tests/kms_force_connector.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/kms_force_connector.c b/tests/kms_force_connector.c index 5b19794..96881c7 100644 --- a/tests/kms_force_connector.c +++ b/tests/kms_force_connector.c @@ -116,5 +116,5 @@ main (int argc, char **argv) drmModeFreeConnector(connector); - igt_success(); + igt_exit(); }