From patchwork Wed Dec 13 12:58:14 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Petri Latvala X-Patchwork-Id: 10109927 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 CA05F60327 for ; Wed, 13 Dec 2017 12:58:45 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id C088728CC0 for ; Wed, 13 Dec 2017 12:58:45 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id B558F28F1E; Wed, 13 Dec 2017 12:58:45 +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 6FA3528CC0 for ; Wed, 13 Dec 2017 12:58:45 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 90E296E4BB; Wed, 13 Dec 2017 12:58:44 +0000 (UTC) X-Original-To: intel-gfx@lists.freedesktop.org Delivered-To: intel-gfx@lists.freedesktop.org Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by gabe.freedesktop.org (Postfix) with ESMTPS id EFB0F6E4B9 for ; Wed, 13 Dec 2017 12:58:41 +0000 (UTC) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga006.jf.intel.com ([10.7.209.51]) by fmsmga102.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 13 Dec 2017 04:58:41 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.45,397,1508828400"; d="scan'208";a="2468492" Received: from thrakatuluk.fi.intel.com (HELO thrakatuluk) ([10.237.68.137]) by orsmga006.jf.intel.com with ESMTP; 13 Dec 2017 04:58:39 -0800 Received: from platvala by thrakatuluk with local (Exim 4.89) (envelope-from ) id 1eP6cQ-0004oh-SY; Wed, 13 Dec 2017 14:58:38 +0200 From: Petri Latvala To: intel-gfx@lists.freedesktop.org Date: Wed, 13 Dec 2017 14:58:14 +0200 Message-Id: <20171213125816.18371-3-petri.latvala@intel.com> X-Mailer: git-send-email 2.14.1 In-Reply-To: <20171213125816.18371-1-petri.latvala@intel.com> References: <20171213125816.18371-1-petri.latvala@intel.com> Subject: [Intel-gfx] [PATCH i-g-t 2/4] tests: Move gem_bad_address to hw-tests 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 Since the test is considered to be HW focused, meaning that it doesn't really exercise the driver but rather an HW feature, it is placed in tests/hw-tests. Signed-off-by: Petri Latvala Cc: Antonio Argenziano --- tests/Makefile.sources | 1 - tests/hw-tests/Makefile.sources | 1 + tests/{ => hw-tests}/gem_bad_address.c | 0 tests/hw-tests/meson.build | 1 + tests/meson.build | 1 - 5 files changed, 2 insertions(+), 2 deletions(-) rename tests/{ => hw-tests}/gem_bad_address.c (100%) diff --git a/tests/Makefile.sources b/tests/Makefile.sources index e4e06d01..29dfd9cd 100644 --- a/tests/Makefile.sources +++ b/tests/Makefile.sources @@ -264,7 +264,6 @@ HANG = \ gem_bad_batch \ gem_hang \ gem_bad_blit \ - gem_bad_address \ gem_non_secure_batch \ $(NULL) diff --git a/tests/hw-tests/Makefile.sources b/tests/hw-tests/Makefile.sources index a224da7c..1fb3ed9e 100644 --- a/tests/hw-tests/Makefile.sources +++ b/tests/hw-tests/Makefile.sources @@ -1,2 +1,3 @@ hw_tests = \ + gem_bad_address \ $(NULL) diff --git a/tests/gem_bad_address.c b/tests/hw-tests/gem_bad_address.c similarity index 100% rename from tests/gem_bad_address.c rename to tests/hw-tests/gem_bad_address.c diff --git a/tests/hw-tests/meson.build b/tests/hw-tests/meson.build index 32bb637d..848d113e 100644 --- a/tests/hw-tests/meson.build +++ b/tests/hw-tests/meson.build @@ -1,4 +1,5 @@ hw_test_progs = [ + 'gem_bad_address', ] hw_test_deps = [ igt_deps ] diff --git a/tests/meson.build b/tests/meson.build index 8ab16a70..5eef1bd6 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -301,7 +301,6 @@ hang_progs = [ 'gem_bad_batch', 'gem_hang', 'gem_bad_blit', - 'gem_bad_address', 'gem_non_secure_batch', ] foreach prog : hang_progs