diff options
Diffstat (limited to 'contrib/test_summary')
-rwxr-xr-x | contrib/test_summary | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/contrib/test_summary b/contrib/test_summary index db1a8b62214..8b80c76a054 100755 --- a/contrib/test_summary +++ b/contrib/test_summary @@ -93,6 +93,7 @@ BEGIN { $1 ~ /\/configure$/ { $1 = "configure flags:"; configflags = $0 } /^Running target / { print ""; print; } /^Target / { if (host != "") next; else host = $3; } +/^Host / && host ~ /^unix{.*}$/ { host = $3 " " substr(host, 5); } /^Native / { if (host != "") next; else host = $4; } /^[ ]*=== [^ ]+ tests ===/ { if (lang == "") lang = " "$2" "; else lang = " "; |