Improve submit by adding some stats and beautify diff
1 unresolved thread
1 unresolved thread
- Print out the summary of changes directly from running "upload"
- Add a summary to the diff output
- Make diff output a bit simpler to read
Specifically:
deqp_submit.py upload now prints changes stat at the end of a run, e.g.
Change stats:
Fail -> Pass:4
Incomplete -> Pass:7
Pass -> Fail:1
deqp_submit.py diff does no longer go through a git commit git diff git reset cycle, the output is simplified to make it more readable, i.e. it is now
testname oldState -> newState
When printed to a terminal the output is colored, and when piping, e.g. to grep the color escape codes are not printed to make grep work properly. To filter the result for the current changed outcome (e.g. Pass)
deqp_submit.py diff .... | grep Pass$
Edited by Gert Wollny
Merge request reports
Activity
Filter activity
Nice! One thing missing is support for CompatibilityWarning results which currently causes the diff operation to crash if such results are found. Relatedly, perhaps we should be more be more forgiving about results strings we don't support yet?
Edited by Alexandros Frantzis
added 1 commit
- 442a862d - deqp_submit: Add stats output to upload and beautify diff
- Resolved by Gert Wollny
added 1 commit
- 93950d89 - deqp_submit: Add stats output to upload and beautify diff