From patchwork Tue Jun 6 19:29:19 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Randolph Sapp X-Patchwork-Id: 25198 X-Patchwork-Delegate: reatmon@ti.com Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from aws-us-west-2-korg-lkml-1.web.codeaurora.org (localhost.localdomain [127.0.0.1]) by smtp.lore.kernel.org (Postfix) with ESMTP id 86432C7EE45 for ; Tue, 6 Jun 2023 19:29:27 +0000 (UTC) Received: from lelv0142.ext.ti.com (lelv0142.ext.ti.com [198.47.23.249]) by mx.groups.io with SMTP id smtpd.web11.6348.1686079764905576123 for ; Tue, 06 Jun 2023 12:29:25 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@ti.com header.s=ti-com-17q1 header.b=xSGVSqZf; spf=pass (domain: ti.com, ip: 198.47.23.249, mailfrom: rs@ti.com) Received: from lelv0265.itg.ti.com ([10.180.67.224]) by lelv0142.ext.ti.com (8.15.2/8.15.2) with ESMTP id 356JTMIj086953; Tue, 6 Jun 2023 14:29:22 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ti.com; s=ti-com-17Q1; t=1686079762; bh=8XMxmVS1CQtjzYmAui4AtiqYe8SikDRlom1IFVWBZbQ=; h=From:To:CC:Subject:Date; b=xSGVSqZfZx7V60gv8245+zNj51OupbYIhosTddUzf4nnVuQ42A1S25Ci4i+aFm7pG UKaA0y0ahrQ5ijtr3d4uKPZAERlrRTWhit34kCIVs4MIlp7hLj769lLzxpsa/rj+t1 odNeippFqWPWnPK0m/1/HRkZmcIWuCre7nDKJ78A= Received: from DLEE113.ent.ti.com (dlee113.ent.ti.com [157.170.170.24]) by lelv0265.itg.ti.com (8.15.2/8.15.2) with ESMTPS id 356JTMrr025958 (version=TLSv1.2 cipher=AES256-GCM-SHA384 bits=256 verify=FAIL); Tue, 6 Jun 2023 14:29:22 -0500 Received: from DLEE103.ent.ti.com (157.170.170.33) by DLEE113.ent.ti.com (157.170.170.24) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2507.23; Tue, 6 Jun 2023 14:29:22 -0500 Received: from lelv0326.itg.ti.com (10.180.67.84) by DLEE103.ent.ti.com (157.170.170.33) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2507.23 via Frontend Transport; Tue, 6 Jun 2023 14:29:22 -0500 Received: from rs-desk.dhcp.ti.com (ileaxei01-snat.itg.ti.com [10.180.69.5]) by lelv0326.itg.ti.com (8.15.2/8.15.2) with ESMTP id 356JTMKQ020860; Tue, 6 Jun 2023 14:29:22 -0500 From: To: , , , CC: , Randolph Sapp Subject: [meta-arago][master/kirkstone][PATCH] ti-test: add piglit to ARAGO_TEST Date: Tue, 6 Jun 2023 14:29:19 -0500 Message-ID: <20230606192919.909851-1-rs@ti.com> X-Mailer: git-send-email 2.40.1 MIME-Version: 1.0 X-EXCLAIMER-MD-CONFIG: e1e8a2fd-e40a-4ac6-ac9b-f7e9cc9ee180 List-Id: X-Webhook-Received: from li982-79.members.linode.com [45.33.32.79] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Tue, 06 Jun 2023 19:29:27 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arago/message/14500 From: Randolph Sapp Piglit is an OpenGL test suite and test-suite runner with support for OpenGLES, Vulkan, OpenCL compliance tests. This in particular is very nice in tracking feature regressions and driver conformance. Signed-off-by: Randolph Sapp --- Sending this again because git send-email dropped my subject prefix. meta-arago-distro/conf/distro/arago.conf | 3 +++ meta-arago-distro/recipes-core/packagegroups/ti-test.bb | 3 +++ 2 files changed, 6 insertions(+) diff --git a/meta-arago-distro/conf/distro/arago.conf b/meta-arago-distro/conf/distro/arago.conf index a6425fae..cce73ba8 100644 --- a/meta-arago-distro/conf/distro/arago.conf +++ b/meta-arago-distro/conf/distro/arago.conf @@ -95,6 +95,9 @@ PACKAGECONFIG:pn-curl = "${@bb.utils.contains("DISTRO_FEATURES", "ipv6", "ipv6", PACKAGECONFIG:pn-glmark2 = "drm-gles2 wayland-gles2" +# Enable testing for opencl and vulkan with piglit +PACKAGECONFIG:append:pn-piglit = "${@bb.utils.filter("DISTRO_FEATURES", "opencl vulkan", d)}" + # Enable encryption support in open62541 PACKAGECONFIG:append:pn-open62541 = " encrypt" diff --git a/meta-arago-distro/recipes-core/packagegroups/ti-test.bb b/meta-arago-distro/recipes-core/packagegroups/ti-test.bb index 0b6e1eed..929d63c7 100644 --- a/meta-arago-distro/recipes-core/packagegroups/ti-test.bb +++ b/meta-arago-distro/recipes-core/packagegroups/ti-test.bb @@ -39,6 +39,9 @@ ARAGO_TEST = "\ nbench-byte \ stream \ cryptodev-tests \ + piglit \ + ${@bb.utils.contains("DISTRO_FEATURES", "opengl", "opengl-es-cts", "", d)} \ + ${@bb.utils.contains("DISTRO_FEATURES", "vulkan", "vulkan-cts", "", d)} \ " ARAGO_TEST:append:armv7a = " \