From patchwork Wed Sep 27 11:57:05 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Petri Latvala X-Patchwork-Id: 9973861 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 D96A9602D6 for ; Wed, 27 Sep 2017 11:57:38 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id C9DFF288AC for ; Wed, 27 Sep 2017 11:57:38 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id BDCE028935; Wed, 27 Sep 2017 11:57:38 +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 19903288AC for ; Wed, 27 Sep 2017 11:57:37 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 3CD0A89AE6; Wed, 27 Sep 2017 11:57:36 +0000 (UTC) X-Original-To: intel-gfx@lists.freedesktop.org Delivered-To: intel-gfx@lists.freedesktop.org Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by gabe.freedesktop.org (Postfix) with ESMTPS id 8DB5F89AE6 for ; Wed, 27 Sep 2017 11:57:35 +0000 (UTC) Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga103.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 27 Sep 2017 04:57:07 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos; i="5.42,445,1500966000"; d="scan'208"; a="1199584899" Received: from thrakatuluk.fi.intel.com (HELO thrakatuluk) ([10.237.68.137]) by fmsmga001.fm.intel.com with ESMTP; 27 Sep 2017 04:57:06 -0700 Received: from platvala by thrakatuluk with local (Exim 4.89) (envelope-from ) id 1dxAxd-0007pa-AX; Wed, 27 Sep 2017 14:57:05 +0300 Date: Wed, 27 Sep 2017 14:57:05 +0300 From: Petri Latvala To: Boris Brezillon Message-ID: <20170927115705.qhfzzvfy4pwt2lg4@platvala-desk.ger.corp.intel.com> References: <20170927115118.23170-1-boris.brezillon@free-electrons.com> <20170927115118.23170-3-boris.brezillon@free-electrons.com> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20170927115118.23170-3-boris.brezillon@free-electrons.com> User-Agent: NeoMutt/20170609 (1.8.3) Cc: Intel GFX discussion Subject: Re: [Intel-gfx] [PATCH i-g-t 2/2] igt: Add VC4 purgeable BO 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: , Errors-To: intel-gfx-bounces@lists.freedesktop.org Sender: "Intel-gfx" X-Virus-Scanned: ClamAV using ClamSMTP On Wed, Sep 27, 2017 at 01:51:18PM +0200, Boris Brezillon wrote: > Signed-off-by: Boris Brezillon > --- > tests/Makefile.sources | 1 + > tests/vc4_purgeable_bo.c | 274 +++++++++++++++++++++++++++++++++++++++++++++++ > 2 files changed, 275 insertions(+) > create mode 100644 tests/vc4_purgeable_bo.c > > diff --git a/tests/Makefile.sources b/tests/Makefile.sources > index 0adc28a014d2..c78ac9d27921 100644 > --- a/tests/Makefile.sources > +++ b/tests/Makefile.sources > @@ -8,6 +8,7 @@ VC4_TESTS = \ > vc4_create_bo \ > vc4_dmabuf_poll \ > vc4_lookup_fail \ > + vc4_purgeable_bo \ > vc4_wait_bo \ > vc4_wait_seqno \ > $(NULL) For meson, squash this in: diff --git a/tests/meson.build b/tests/meson.build index 1c619179..8f94e3c4 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -243,6 +243,7 @@ if libdrm_vc4.found() 'vc4_create_bo', 'vc4_dmabuf_poll', 'vc4_lookup_fail', + 'vc4_purgeable_bo', 'vc4_wait_bo', 'vc4_wait_seqno', ]