pg_regress: Include diffs in TAP output When pg_regress fails it is often tedious to find the actual diffs, especially in CI where you must navigate a file browser. Emit the first 80 lines of the combined regression.diffs as TAP diagnostics so the failure reason is visible directly in the test output.
The line limit is across all failing tests in a single pg_regress run to avoid flooding when a crash causes every subsequent test to fail. New DIAG_DETAIL / DIAG_END tap output types are added, mirroring the existing NOTE_DETAIL / NOTE_END pair, so that long diff lines can be emitted without spurious '#' prefixes on continuation lines. Author: Jelte Fennema-Nio <[email protected]> Reviewed-by: Andrew Dunstan <[email protected]> Reviewed-by: Corey Huinker <[email protected]> Reviewed-by: Zsolt Parragi <[email protected]> Reviewed-by: Nazir Bilal Yavuz <[email protected]> Reviewed-by: Andres Freund <[email protected]> Discussion: https://postgr.es/m/[email protected] Branch ------ master Details ------- https://git.postgresql.org/pg/commitdiff/5720ae01436480c1dcdd34ece0c3d83b00844bca Modified Files -------------- src/test/regress/pg_regress.c | 93 ++++++++++++++++++++++++++++++++++++++----- 1 file changed, 82 insertions(+), 11 deletions(-)
