From patchwork Tue Dec 12 11:07:56 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Petri Latvala X-Patchwork-Id: 10106685 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 89D216034B for ; Tue, 12 Dec 2017 11:08:07 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 7C15729B51 for ; Tue, 12 Dec 2017 11:08:07 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 710AB29B80; Tue, 12 Dec 2017 11:08:07 +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 46C7629B7F for ; Tue, 12 Dec 2017 11:08:06 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 58ABA89D43; Tue, 12 Dec 2017 11:08:04 +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 3B5B889D43 for ; Tue, 12 Dec 2017 11:08:03 +0000 (UTC) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga007.fm.intel.com ([10.253.24.52]) by fmsmga102.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 12 Dec 2017 03:08:01 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.45,394,1508828400"; d="scan'208";a="1778826" Received: from thrakatuluk.fi.intel.com (HELO thrakatuluk) ([10.237.68.137]) by fmsmga007.fm.intel.com with ESMTP; 12 Dec 2017 03:08:00 -0800 Received: from platvala by thrakatuluk with local (Exim 4.89) (envelope-from ) id 1eOiPn-0003S7-I8; Tue, 12 Dec 2017 13:07:59 +0200 From: Petri Latvala To: intel-gfx@lists.freedesktop.org Date: Tue, 12 Dec 2017 13:07:56 +0200 Message-Id: <20171212110756.13141-1-petri.latvala@intel.com> X-Mailer: git-send-email 2.14.1 In-Reply-To: <20171207163807.GI10981@intel.com> References: <20171207163807.GI10981@intel.com> MIME-Version: 1.0 Cc: Daniel Vetter Subject: [Intel-gfx] [PATCH i-g-t v2 1/1] meson: Install .testlist files and README from tests/intel-ci 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 v2: README too, and a better variable name (Ville) Signed-off-by: Petri Latvala Cc: Daniel Vetter Cc: Ville Syrjälä Reviewed-by: Daniel Vetter --- tests/intel-ci/meson.build | 8 ++++++++ tests/meson.build | 2 ++ 2 files changed, 10 insertions(+) create mode 100644 tests/intel-ci/meson.build diff --git a/tests/intel-ci/meson.build b/tests/intel-ci/meson.build new file mode 100644 index 00000000..5394a2ff --- /dev/null +++ b/tests/intel-ci/meson.build @@ -0,0 +1,8 @@ + +intelci_files = [ + 'fast-feedback.testlist', + 'meta.testlist', + 'README', +] + +install_data(sources : intelci_files, install_dir : pkgdatadir) diff --git a/tests/meson.build b/tests/meson.build index 1d1cbe3a..4c4bee1d 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -319,3 +319,5 @@ image_files = [ 'pass.png', ] install_data(sources : image_files, install_dir : pkgdatadir) + +subdir('intel-ci')