From patchwork Wed Feb 1 13:18:08 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mika Kahola X-Patchwork-Id: 9549713 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 05AE560424 for ; Wed, 1 Feb 2017 13:17:37 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id EA2892843E for ; Wed, 1 Feb 2017 13:17:36 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id DCED22842E; Wed, 1 Feb 2017 13:17:36 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-4.2 required=2.0 tests=BAYES_00, RCVD_IN_DNSWL_MED autolearn=ham version=3.3.1 Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.wl.linuxfoundation.org (Postfix) with ESMTPS id 99A522842E for ; Wed, 1 Feb 2017 13:17:36 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 21E426E7DE; Wed, 1 Feb 2017 13:17:36 +0000 (UTC) X-Original-To: intel-gfx@lists.freedesktop.org Delivered-To: intel-gfx@lists.freedesktop.org Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by gabe.freedesktop.org (Postfix) with ESMTPS id 111966E7DB for ; Wed, 1 Feb 2017 13:17:34 +0000 (UTC) Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga105.jf.intel.com with ESMTP; 01 Feb 2017 05:17:34 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.33,320,1477983600"; d="scan'208";a="38245156" Received: from sorvi.fi.intel.com ([10.237.72.109]) by orsmga002.jf.intel.com with ESMTP; 01 Feb 2017 05:17:32 -0800 From: Mika Kahola To: intel-gfx@lists.freedesktop.org Date: Wed, 1 Feb 2017 15:18:08 +0200 Message-Id: <1485955089-30267-7-git-send-email-mika.kahola@intel.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1485955089-30267-1-git-send-email-mika.kahola@intel.com> References: <1485955089-30267-1-git-send-email-mika.kahola@intel.com> Subject: [Intel-gfx] [PATCH i-g-t v3 6/7] tests/kms_plane_lowres: Add TEST_ONLY flag X-BeenThere: intel-gfx@lists.freedesktop.org X-Mailman-Version: 2.1.18 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-Virus-Scanned: ClamAV using ClamSMTP Add TEST_ONLY flag to test atomic modesetting commits without actual real-life commit. Signed-off-by: Mika Kahola --- tests/kms_plane_lowres.c | 40 ++++++++++++++++++++++++++++++++++++---- 1 file changed, 36 insertions(+), 4 deletions(-) diff --git a/tests/kms_plane_lowres.c b/tests/kms_plane_lowres.c index 689c248..c23660f 100644 --- a/tests/kms_plane_lowres.c +++ b/tests/kms_plane_lowres.c @@ -320,21 +320,53 @@ test_plane_position(data_t *data, enum pipe pipe, uint64_t modifier) static void run_tests_for_pipe(data_t *data, enum pipe pipe) { + igt_subtest_f("pipe-%s-tiling-none-with-test", + kmstest_pipe_name(pipe)) { + data->display.force_test_atomic = true; + test_plane_position(data, pipe, LOCAL_DRM_FORMAT_MOD_NONE); + } + igt_subtest_f("pipe-%s-tiling-none", - kmstest_pipe_name(pipe)) + kmstest_pipe_name(pipe)) { + data->display.force_test_atomic = false; test_plane_position(data, pipe, LOCAL_DRM_FORMAT_MOD_NONE); + } + + igt_subtest_f("pipe-%s-tiling-x-with-test", + kmstest_pipe_name(pipe)) { + data->display.force_test_atomic = true; + test_plane_position(data, pipe, LOCAL_I915_FORMAT_MOD_X_TILED); + } igt_subtest_f("pipe-%s-tiling-x", - kmstest_pipe_name(pipe)) + kmstest_pipe_name(pipe)) { + data->display.force_test_atomic = false; test_plane_position(data, pipe, LOCAL_I915_FORMAT_MOD_X_TILED); + } + + igt_subtest_f("pipe-%s-tiling-y-with-test", + kmstest_pipe_name(pipe)) { + data->display.force_test_atomic = true; + test_plane_position(data, pipe, LOCAL_I915_FORMAT_MOD_Y_TILED); + } igt_subtest_f("pipe-%s-tiling-y", - kmstest_pipe_name(pipe)) + kmstest_pipe_name(pipe)) { + data->display.force_test_atomic = false; test_plane_position(data, pipe, LOCAL_I915_FORMAT_MOD_Y_TILED); + } + + igt_subtest_f("pipe-%s-tiling-yf-with-test", + kmstest_pipe_name(pipe)) { + data->display.force_test_atomic = true; + test_plane_position(data, pipe, LOCAL_I915_FORMAT_MOD_Yf_TILED); + } igt_subtest_f("pipe-%s-tiling-yf", - kmstest_pipe_name(pipe)) + kmstest_pipe_name(pipe)) { + data->display.force_test_atomic = false; test_plane_position(data, pipe, LOCAL_I915_FORMAT_MOD_Yf_TILED); + } } static data_t data;