From patchwork Thu Dec 12 10:29:24 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Chris Wilson X-Patchwork-Id: 11287821 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 B4107930 for ; Thu, 12 Dec 2019 10:30:00 +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 9C999206DA for ; Thu, 12 Dec 2019 10:30:00 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 9C999206DA 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 591CA899BC; Thu, 12 Dec 2019 10:29:58 +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 BF5226ED08; Thu, 12 Dec 2019 10:29:56 +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 19552293-1500050 for multiple; Thu, 12 Dec 2019 10:29:22 +0000 From: Chris Wilson To: intel-gfx@lists.freedesktop.org Date: Thu, 12 Dec 2019 10:29:24 +0000 Message-Id: <20191212102924.1194130-1-chris@chris-wilson.co.uk> X-Mailer: git-send-email 2.24.0 MIME-Version: 1.0 Subject: [Intel-gfx] [PATCH i-g-t] i915: Rename gem_exec_parse and gem_exec_parse_blt 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" The cmdparser tests are tied to the generation, so rename the tests to indicate that and remove the ambiguity that they are more generic tests. Signed-off-by: Chris Wilson Cc: Mika Kuoppala Acked-by: Mika Kuoppala --- tests/Makefile.sources | 8 ++++---- tests/i915/{gem_exec_parse.c => gen7_exec_parse.c} | 0 tests/i915/{gem_exec_parse_blt.c => gen9_exec_parse.c} | 0 tests/intel-ci/blacklist.txt | 2 +- tests/meson.build | 4 ++-- 5 files changed, 7 insertions(+), 7 deletions(-) rename tests/i915/{gem_exec_parse.c => gen7_exec_parse.c} (100%) rename tests/i915/{gem_exec_parse_blt.c => gen9_exec_parse.c} (100%) diff --git a/tests/Makefile.sources b/tests/Makefile.sources index 2893f9bc0..806eb02d0 100644 --- a/tests/Makefile.sources +++ b/tests/Makefile.sources @@ -241,11 +241,11 @@ gem_exec_parallel_SOURCES = i915/gem_exec_parallel.c TESTS_progs += gem_exec_params gem_exec_params_SOURCES = i915/gem_exec_params.c -TESTS_progs += gem_exec_parse -gem_exec_parse_SOURCES = i915/gem_exec_parse.c +TESTS_progs += gen7_exec_parse +gen7_exec_parse_SOURCES = i915/gen7_exec_parse.c -TESTS_progs += gem_exec_parse_blt -gem_exec_parse_blt_SOURCES = i915/gem_exec_parse_blt.c +TESTS_progs += gen9_exec_parse +gen9_exec_parse_SOURCES = i915/gen9_exec_parse.c TESTS_progs += gem_exec_reloc gem_exec_reloc_SOURCES = i915/gem_exec_reloc.c diff --git a/tests/i915/gem_exec_parse.c b/tests/i915/gen7_exec_parse.c similarity index 100% rename from tests/i915/gem_exec_parse.c rename to tests/i915/gen7_exec_parse.c diff --git a/tests/i915/gem_exec_parse_blt.c b/tests/i915/gen9_exec_parse.c similarity index 100% rename from tests/i915/gem_exec_parse_blt.c rename to tests/i915/gen9_exec_parse.c diff --git a/tests/intel-ci/blacklist.txt b/tests/intel-ci/blacklist.txt index 4bca1b6c5..a48163c68 100644 --- a/tests/intel-ci/blacklist.txt +++ b/tests/intel-ci/blacklist.txt @@ -77,7 +77,7 @@ igt@gem_write_read_ring_switch(@.*)? ############################################### # GEM: Not worth fixing ############################################### -igt@gem_exec_parse@.*lri.* +igt@gen7_exec_parse@.*lri.* ############################################### # There are no DRRS capable displays in CI lab ############################################### diff --git a/tests/meson.build b/tests/meson.build index d931cc372..570de5459 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -147,8 +147,8 @@ i915_progs = [ 'gem_exec_nop', 'gem_exec_parallel', 'gem_exec_params', - 'gem_exec_parse', - 'gem_exec_parse_blt', + 'gen7_exec_parse', + 'gen9_exec_parse', 'gem_exec_reloc', 'gem_exec_reuse', 'gem_exec_schedule',