Skip to content
Merged
Show file tree
Hide file tree
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
7 changes: 0 additions & 7 deletions share/etest/results.sh
Original file line number Diff line number Diff line change
Expand Up @@ -235,15 +235,8 @@ create_summary()

# Print gotest-style summary with file locations
{
local cols line
cols=$(tput cols)
printf -v line '%*s' "${cols}" ''
line="${line// /─}"

# Test counts
echo
echo "$(ecolor cyan)${line}$(ecolor off)"
echo
local total
total=$(( NUM_TESTS_PASSED + NUM_TESTS_FAILED + NUM_TESTS_SKIPPED ))
printf "%s%s Total: %s%d%s Passed: %s%d%s Skipped: %s%d%s Failed: %s%d%s" \
Expand Down
2 changes: 2 additions & 0 deletions share/etest/runners.sh
Original file line number Diff line number Diff line change
Expand Up @@ -769,6 +769,8 @@ __run_all_tests_parallel()
statedir="${testdir}.state"

# Append crash info to the per-test output.log (for __extract_test_output)
# Create statedir if it doesn't exist (worker may have crashed before creating it)
mkdir -p "${statedir}"
{
echo ""
echo "[WORKER CRASHED - exit code ${wrc}]"
Expand Down
Loading