From patchwork Mon Jan 27 09:07:10 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Chris Wilson X-Patchwork-Id: 11352247 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 0BE82921 for ; Mon, 27 Jan 2020 09:07:24 +0000 (UTC) Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id E8E7521569 for ; Mon, 27 Jan 2020 09:07:23 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org E8E7521569 Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=chris-wilson.co.uk Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=intel-gfx-bounces@lists.freedesktop.org Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 05B986EA79; Mon, 27 Jan 2020 09:07:23 +0000 (UTC) X-Original-To: intel-gfx@lists.freedesktop.org Delivered-To: intel-gfx@lists.freedesktop.org Received: from fireflyinternet.com (mail.fireflyinternet.com [109.228.58.192]) by gabe.freedesktop.org (Postfix) with ESMTPS id 74EBB6EA75; Mon, 27 Jan 2020 09:07:21 +0000 (UTC) X-Default-Received-SPF: pass (skip=forwardok (res=PASS)) x-ip-name=78.156.65.138; Received: from haswell.alporthouse.com (unverified [78.156.65.138]) by fireflyinternet.com (Firefly Internet (M1)) with ESMTP id 20018980-1500050 for multiple; Mon, 27 Jan 2020 09:07:14 +0000 From: Chris Wilson To: intel-gfx@lists.freedesktop.org Date: Mon, 27 Jan 2020 09:07:10 +0000 Message-Id: <20200127090712.2324227-2-chris@chris-wilson.co.uk> X-Mailer: git-send-email 2.25.0 In-Reply-To: <20200127090712.2324227-1-chris@chris-wilson.co.uk> References: <20200127090712.2324227-1-chris@chris-wilson.co.uk> MIME-Version: 1.0 Subject: [Intel-gfx] [PATCH i-g-t 2/4] i915/gem_exec_nop: Reduce runtime X-BeenThere: intel-gfx@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Intel graphics driver community testing & development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: igt-dev@lists.freedesktop.org Errors-To: intel-gfx-bounces@lists.freedesktop.org Sender: "Intel-gfx" Reduce the upper timeout for stress tests from 150s to a mere 20s, and quick tests to 2s. Signed-off-by: Chris Wilson --- tests/i915/gem_exec_nop.c | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/tests/i915/gem_exec_nop.c b/tests/i915/gem_exec_nop.c index dbedb3561..9a2efd32c 100644 --- a/tests/i915/gem_exec_nop.c +++ b/tests/i915/gem_exec_nop.c @@ -865,41 +865,41 @@ igt_main } igt_subtest("basic-series") - series(device, handle, 5); + series(device, handle, 2); igt_subtest("basic-parallel") - parallel(device, handle, 5); + parallel(device, handle, 2); igt_subtest("basic-sequential") - sequential(device, handle, 0, 5); + sequential(device, handle, 0, 2); for (e = intel_execution_engines; e->name; e++) { igt_subtest_f("%s", e->name) single(device, handle, eb_ring(e), e->name); igt_subtest_f("signal-%s", e->name) - fence_signal(device, handle, eb_ring(e), e->name, 5); + fence_signal(device, handle, eb_ring(e), e->name, 2); } igt_subtest("signal-all") - fence_signal(device, handle, ALL_ENGINES, "all", 150); + fence_signal(device, handle, ALL_ENGINES, "all", 20); igt_subtest("series") - series(device, handle, 150); + series(device, handle, 20); igt_subtest("parallel") - parallel(device, handle, 150); + parallel(device, handle, 20); igt_subtest("sequential") - sequential(device, handle, 0, 150); + sequential(device, handle, 0, 20); igt_subtest("forked-sequential") - sequential(device, handle, FORKED, 150); + sequential(device, handle, FORKED, 20); igt_subtest("chained-sequential") - sequential(device, handle, FORKED | CHAINED, 150); + sequential(device, handle, FORKED | CHAINED, 20); igt_subtest("context-sequential") - sequential(device, handle, FORKED | CONTEXT, 150); + sequential(device, handle, FORKED | CONTEXT, 20); igt_subtest_group { igt_fixture {