From patchwork Wed Nov 25 12:12:41 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Feceoru, Gabriel" X-Patchwork-Id: 7698541 Return-Path: X-Original-To: patchwork-intel-gfx@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 22D9DBF90C for ; Wed, 25 Nov 2015 12:09:31 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 54D752084C for ; Wed, 25 Nov 2015 12:09:30 +0000 (UTC) Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) by mail.kernel.org (Postfix) with ESMTP id 9313E208D1 for ; Wed, 25 Nov 2015 12:09:28 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 3049389E41; Wed, 25 Nov 2015 04:09:27 -0800 (PST) X-Original-To: intel-gfx@lists.freedesktop.org Delivered-To: intel-gfx@lists.freedesktop.org Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by gabe.freedesktop.org (Postfix) with ESMTP id D3E8989E41 for ; Wed, 25 Nov 2015 04:09:25 -0800 (PST) Received: from orsmga003.jf.intel.com ([10.7.209.27]) by orsmga103.jf.intel.com with ESMTP; 25 Nov 2015 04:07:23 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.20,342,1444719600"; d="scan'208";a="694142885" Received: from gfeceoru-ms-7924.rb.intel.com ([10.237.105.33]) by orsmga003.jf.intel.com with ESMTP; 25 Nov 2015 04:07:22 -0800 From: Gabriel Feceoru To: intel-gfx@lists.freedesktop.org Date: Wed, 25 Nov 2015 14:12:41 +0200 Message-Id: <1448453561-8517-1-git-send-email-gabriel.feceoru@intel.com> X-Mailer: git-send-email 1.9.1 Subject: [Intel-gfx] [PATCH i-g-t] scripts: Add feature list file for piglit 'summary feature' 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-Spam-Status: No, score=-4.8 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_MED, RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP This is a placeholder for the feature list file. Its content is just an example. This needs to be filled in by feature owners with the feature name and the corresponding tests regex. Please refer to this piglit commit for more info on this feature. commit f16d011db75b08ceae241e7370599146691340ab Author: Feceoru, Gabriel Date: Tue Nov 3 17:50:41 2015 +0200 framework: Add support for feature readiness. Signed-off-by: Gabriel Feceoru --- scripts/feat_profile.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 scripts/feat_profile.json diff --git a/scripts/feat_profile.json b/scripts/feat_profile.json new file mode 100644 index 0000000..f3a21a3 --- /dev/null +++ b/scripts/feat_profile.json @@ -0,0 +1,12 @@ +{ + "glsl" : { + "include_tests" : "glsl", + "exclude_tests" : "", + "target_rate" : 90 + }, + "arb" : { + "include_tests" : "ARB_shader|deqp.arb shader", + "exclude_tests" : "", + "target_rate" : 10 + } +}