From mboxrd@z Thu Jan 1 00:00:00 1970 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 gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 569F8C4345F for ; Tue, 23 Apr 2024 12:57:03 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 870C2113386; Tue, 23 Apr 2024 12:57:02 +0000 (UTC) Authentication-Results: gabe.freedesktop.org; dkim=pass (2048-bit key; unprotected) header.d=collabora.com header.i=@collabora.com header.b="xRziz0Gy"; dkim-atps=neutral Received: from madrid.collaboradmins.com (madrid.collaboradmins.com [46.235.227.194]) by gabe.freedesktop.org (Postfix) with ESMTPS id 4AFAC113385; Tue, 23 Apr 2024 12:57:01 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=collabora.com; s=mail; t=1713877019; bh=XeZycoklrbmIsGAeu98uH0HIylfGOQJCx4GR355GWBc=; h=Date:Subject:To:Cc:References:From:In-Reply-To:From; b=xRziz0GyVrPt2dhtiBiqNDXqczIeDLuZbHnEOWJSrlHm36b7jLx7WJlA/NnNyYz+O ILQ5AxoCCF584XC6at4Ovw7VG6IZUkYx2hcSU4LJTCUGclhXqLyOelc6ejocD9iQE9 ycHEPJjr5Z1dDU4MQAjBDjumEXasMAR4WwmZ4XII0SdqTIJvWCyiBMWY9gkqTTuKHH g8Xdo9I4ALXJxJU0+jh5uZmA3T1BqHogZP/oCoSlUCAb5X+JS2pJqTZQ1G7PtkePVv 2ZfpAJAYcPdPKlUtCWGitWSX/IzjmIfxI5mmr6ld3MWC4bsdYgChfIPWTxwQ5z+5km WKkdXlDaRIXeQ== Received: from [100.66.96.193] (cola.collaboradmins.com [195.201.22.229]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) (Authenticated sender: vignesh) by madrid.collaboradmins.com (Postfix) with ESMTPSA id 6AF5937813A2; Tue, 23 Apr 2024 12:56:55 +0000 (UTC) Message-ID: Date: Tue, 23 Apr 2024 18:26:53 +0530 MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Subject: Re: [PATCH v1 3/4] drm/ci: uprev IGT and generate testlist from build To: Dmitry Baryshkov , =?UTF-8?Q?Ma=C3=ADra_Canal?= Cc: dri-devel@lists.freedesktop.org, daniels@collabora.com, helen.koike@collabora.com, airlied@gmail.com, daniel@ffwll.ch, robdclark@gmail.com, david.heidelberg@collabora.com, guilherme.gallo@collabora.com, sergi.blanch.torne@collabora.com, linux-mediatek@lists.infradead.org, linux-amlogic@lists.infradead.org, linux-rockchip@lists.infradead.org, amd-gfx@lists.freedesktop.org, linux-arm-msm@vger.kernel.org, intel-gfx@lists.freedesktop.org, virtualization@lists.linux-foundation.org, linux-kernel@vger.kernel.org References: <20240423040243.448091-1-vignesh.raman@collabora.com> <20240423040243.448091-4-vignesh.raman@collabora.com> Content-Language: en-US From: Vignesh Raman In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit X-BeenThere: intel-gfx@lists.freedesktop.org X-Mailman-Version: 2.1.29 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" Hi, On 23/04/24 17:53, Dmitry Baryshkov wrote: > On Tue, 23 Apr 2024 at 13:24, MaĆ­ra Canal wrote: >> >> On 4/23/24 01:02, Vignesh Raman wrote: >>> Uprev IGT to the latest version and stop vendoring the >>> testlist into the kernel. Instead, use the testlist from >>> the IGT build to ensure we do not miss renamed or newly >>> added tests. >> >> Nitpick: wouldn't it be better to (1) stop vendoring the >> testlist into the kernel in one patch and then (2) uprev >> IGT to the latest version? I feel that this patch is changing >> a lot of different stuff. > > Definitely. Otherwise it's hard to understand whether a change to > fails/flakes is caused by the uprev or by the testlist change. E.g. in > several cases the list of failing subtests seems to be replaced with > the test itself. > Yes, will follow the below approach. 1) Use the testlist from build and update fails/flakes/skips 2) Uprev IGT and update fails/flakes/skips Regards, Vignesh >> >>> >>> Skip kms tests for panfrost driver since it is not a kms >>> driver and skip driver-specific tests. Update xfails with >>> the latest testlist. >>> >>> Increase the timoout of i915 jobs to 2h30m since some jobs >>> takes more than 2 hours to complete. >>> >>> Signed-off-by: Vignesh Raman >>> --- > >