mirror of
https://github.com/uutils/diffutils.git
synced 2026-06-10 15:48:59 -07:00
39 lines
1.0 KiB
Bash
Executable File
39 lines
1.0 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# Print the test results written to a JSON file by run-upstream-testsuite.sh
|
|
# in a markdown format. The printout includes the name of the test, the result,
|
|
# the URL to the test script and the contents of stdout and stderr.
|
|
# It can be used verbatim as the description when filing an issue for a test
|
|
# with an unexpected result.
|
|
|
|
json="test-results.json"
|
|
[[ -n $1 ]] && json="$1"
|
|
|
|
codeblock () { echo -e "\`\`\`\n$1\n\`\`\`"; }
|
|
|
|
jq -c '.tests[]' "$json" | while read -r test
|
|
do
|
|
name=$(echo "$test" | jq -r '.test')
|
|
echo "# test: $name"
|
|
result=$(echo "$test" | jq -r '.result')
|
|
echo "result: $result"
|
|
url=$(echo "$test" | jq -r '.url')
|
|
echo "url: $url"
|
|
if [[ "$result" != "SKIP" ]]
|
|
then
|
|
stdout=$(echo "$test" | jq -r '.stdout' | base64 -d)
|
|
if [[ -n "$stdout" ]]
|
|
then
|
|
echo "## stdout"
|
|
codeblock "$stdout"
|
|
fi
|
|
stderr=$(echo "$test" | jq -r '.stderr' | base64 -d)
|
|
if [[ -n "$stderr" ]]
|
|
then
|
|
echo "## stderr"
|
|
codeblock "$stderr"
|
|
fi
|
|
fi
|
|
echo ""
|
|
done
|