From 1c14c7b3ba890c2f02aa6d4de432d42135657fd7 Mon Sep 17 00:00:00 2001 From: Swung0x48 Date: Sat, 27 Jun 2026 15:11:09 +0800 Subject: [PATCH] [CI] remove retrace missing image count --- tools/trace_replay/render_retrace_summary.mjs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tools/trace_replay/render_retrace_summary.mjs b/tools/trace_replay/render_retrace_summary.mjs index 3c36c2aa..929d0a5b 100644 --- a/tools/trace_replay/render_retrace_summary.mjs +++ b/tools/trace_replay/render_retrace_summary.mjs @@ -345,11 +345,10 @@ async function renderHtml(rows, outputDir, title, groupLabel, htmlName) { const passed = groupCells.filter((row) => row.status === "PASS").length; const failed = groupCells.filter((row) => row.status === "FAIL").length; const noResult = groupCells.filter((row) => row.status !== "PASS" && row.status !== "FAIL").length; - const incompleteImages = groupCells.filter((row) => row.status !== "NO_RESULT" && missingImages(row)).length; return `

${htmlEscape(title)} - ${htmlEscape(group)}

-

Each backend cell shows actual / golden / diff. Failed cases are red; absent results are orange; incomplete image sets get an orange notch. PASS ${passed}, FAIL ${failed}, NO RESULT ${noResult}, MISSING IMAGES ${incompleteImages}.

+

Each backend cell shows actual / golden / diff. Failed cases are red; absent results are orange; incomplete image sets get an orange notch. PASS ${passed}, FAIL ${failed}, NO RESULT ${noResult}.

case
DirectGLES