summaryrefslogtreecommitdiff
path: root/drivers/gpu/drm/ci/xfails/update-xfails.py
diff options
context:
space:
mode:
authorVignesh Raman <vignesh.raman@collabora.com>2024-05-29 08:10:49 +0530
committerHelen Koike <helen.koike@collabora.com>2024-06-06 11:41:35 -0300
commite2ef28ea15b461a394377c41b20f50ca59f98059 (patch)
treef996be3e7129d2d532aa127115097b127f8de73d /drivers/gpu/drm/ci/xfails/update-xfails.py
parent460a336398e084ae061a661338123863239eb45c (diff)
drm/ci: update xfails for the new testlist
Now the testlist is used from IGT build, so update xfails with the new testlist. Set the timeout of all i915 jobs to 1h30m since some jobs takes more than 1 hour to complete. Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> # msm testlists Signed-off-by: Vignesh Raman <vignesh.raman@collabora.com> Reviewed-by: Jessica Zhang <quic_jesszhan@quicinc.com> # msm test list Acked-by: Helen Koike <helen.koike@collabora.com> Signed-off-by: Helen Koike <helen.koike@collabora.com> Link: https://patchwork.freedesktop.org/patch/msgid/20240529024049.356327-7-vignesh.raman@collabora.com Signed-off-by: Helen Koike <helen.koike@collabora.com>
Diffstat (limited to 'drivers/gpu/drm/ci/xfails/update-xfails.py')
-rwxr-xr-xdrivers/gpu/drm/ci/xfails/update-xfails.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/drm/ci/xfails/update-xfails.py b/drivers/gpu/drm/ci/xfails/update-xfails.py
index e9f0ec7fed8d..a446e98d72a1 100755
--- a/drivers/gpu/drm/ci/xfails/update-xfails.py
+++ b/drivers/gpu/drm/ci/xfails/update-xfails.py
@@ -93,10 +93,10 @@ def add_unit_test_or_update_result_to_fails_if_present(fails_txt, unit_test, fai
def split_unit_test_from_collate(xfails):
for job_name in xfails.keys():
for job_id in xfails[job_name].copy().keys():
- if "not found" in xfails[job_name][job_id]:
+ if "not found" in xfails[job_name][job_id].content_as_str:
del xfails[job_name][job_id]
continue
- xfails[job_name][job_id] = xfails[job_name][job_id].strip().split("\n")
+ xfails[job_name][job_id] = xfails[job_name][job_id].content_as_str.splitlines()
def get_xfails_from_pipeline_url(pipeline_url):