From patchwork Mon Oct 22 17:40:04 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Imre Deak X-Patchwork-Id: 1627401 Return-Path: X-Original-To: patchwork-intel-gfx@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork1.kernel.org Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) by patchwork1.kernel.org (Postfix) with ESMTP id 916B64020E for ; Mon, 22 Oct 2012 17:41:14 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 78D5E9E811 for ; Mon, 22 Oct 2012 10:41:14 -0700 (PDT) X-Original-To: intel-gfx@lists.freedesktop.org Delivered-To: intel-gfx@lists.freedesktop.org Received: from mga14.intel.com (mga14.intel.com [143.182.124.37]) by gabe.freedesktop.org (Postfix) with ESMTP id AE1809E7A6 for ; Mon, 22 Oct 2012 10:40:34 -0700 (PDT) Received: from azsmga001.ch.intel.com ([10.2.17.19]) by azsmga102.ch.intel.com with ESMTP; 22 Oct 2012 10:40:34 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="4.80,631,1344236400"; d="scan'208";a="207579988" Received: from ideak-desk.fi.intel.com (HELO localhost) ([10.237.72.98]) by azsmga001.ch.intel.com with ESMTP; 22 Oct 2012 10:40:10 -0700 From: Imre Deak To: intel-gfx@lists.freedesktop.org Date: Mon, 22 Oct 2012 20:40:04 +0300 Message-Id: <1350927609-14649-1-git-send-email-imre.deak@intel.com> X-Mailer: git-send-email 1.7.9.5 Subject: [Intel-gfx] [PATCH 1/5] flip_test: increase duration for vbl+flip tests with ts check X-BeenThere: intel-gfx@lists.freedesktop.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: Intel graphics driver community testing & development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: intel-gfx-bounces+patchwork-intel-gfx=patchwork.kernel.org@lists.freedesktop.org Errors-To: intel-gfx-bounces+patchwork-intel-gfx=patchwork.kernel.org@lists.freedesktop.org We need a big enough duration, so the hotplug event's affect doesn't distort our final frame count too much. Without this these tests will exit with a "dropped frames" error. Signed-off-by: Imre Deak --- tests/flip_test.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/flip_test.c b/tests/flip_test.c index 3d52305..81a7afe 100644 --- a/tests/flip_test.c +++ b/tests/flip_test.c @@ -866,11 +866,11 @@ int main(int argc, char **argv) { 30, TEST_FLIP | TEST_MODESET | TEST_EINVAL, "flip vs modeset" }, { 30, TEST_FLIP | TEST_MODESET | TEST_WITH_DUMMY_LOAD, "delayed flip vs modeset" }, - { 5, TEST_FLIP | TEST_VBLANK | TEST_VBLANK_ABSOLUTE | + { 15, TEST_FLIP | TEST_VBLANK | TEST_VBLANK_ABSOLUTE | TEST_CHECK_TS, "flip vs absolute wf-vblank" }, - { 5, TEST_FLIP | TEST_VBLANK | TEST_CHECK_TS, + { 15, TEST_FLIP | TEST_VBLANK | TEST_CHECK_TS, "flip vs wf-vblank" }, - { 5, TEST_FLIP | TEST_VBLANK | TEST_VBLANK_BLOCK | + { 15, TEST_FLIP | TEST_VBLANK | TEST_VBLANK_BLOCK | TEST_CHECK_TS, "flip vs blocking wf-vblank" }, }; int i;