Conversation
klihub
added this pull request to stack #796
September 16, 2026 11:44
Read what a run collected and write results.json, index.html and status.txt for it, rebuild the index of every run under a result root, and report the coverage in a coverage profile. Assisted-by: Claude Opus 5 (1M context) <noreply@anthropic.com> Signed-off-by: Krisztian Litkey <krisztian.litkey@intel.com>
report-coverage.sh keeps merging the data the tests collected and generating the browsable report, and gets the coverage of each plugin, the total and summary.json from e2e-report. Assisted-by: Claude Opus 5 (1M context) <noreply@anthropic.com> Signed-off-by: Krisztian Litkey <krisztian.litkey@intel.com>
Run it from the worktree, so that the report is always made by the revision which was tested, and drop the script it replaces. Assisted-by: Claude Opus 5 (1M context) <noreply@anthropic.com> Signed-off-by: Krisztian Litkey <krisztian.litkey@intel.com>
Assisted-by: Claude Opus 5 (1M context) <noreply@anthropic.com> Signed-off-by: Krisztian Litkey <krisztian.litkey@intel.com>
klihub
force-pushed
the
e2e-report-in-go
branch
from
September 16, 2026 13:22
163cc82 to
4d8622e
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Generate the e2e reports in go.
Replace the 750 lines of python of scripts/testing/e2e-report and the awk of
report-coverage.sh with test/e2e/cmd/e2e-report, golang and standard library only.
run,indexandcoverage; html/template instead of buildingHTML by hand, and one implementation of the coverage arithmetic.
go run ./test/e2e/cmd/e2e-report, so it always matches therevision under test; nothing is added to any image.
have, and of the index over them, are the same files the python wrote. Only
the spelling of escaped quotes in HTML text differs.
go tool cover -funcand the per-plugin numbersmatch the awk it replaces.