Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions test/run_all_versions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -480,6 +480,17 @@ for pgc in "${CONFIGS[@]}"; do
# is how the replication failures stayed unreadable.
tail -60 "$builddir/${s}.log" | sed 's/^/ /'
results+="$s=FAIL "
# A failed suite RAN. Counting only passes here made the tally
# contradict itself in the one case that matters. The five-major
# matrix reported
#
# PG19 suites that ran: 121 of 122 (skipped: 0)
#
# with temporal failing: 121 + 0 is not 122, and the failing suite was
# in neither bucket of the count that exists to say what ran. Four
# majors hid it, because a tally only disagrees with itself once
# something actually fails.
suites_ran=$((suites_ran + 1))
verfail=1
fi
done
Expand Down
Loading