/usr/src/glibc/debian/testsuite-checking/convertlog.sh is in eglibc-source 2.15-0ubuntu10.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | #!/bin/bash
if [ $# -ne '1' ]; then
echo -e "\nUsage: Converts a log-test-* file into a test-results-* file."
echo -e "$0 : < Input testsuite log file >\n";
exit 1
fi;
echo '#'
echo '# Testsuite failures, someone should be working towards'
echo '# fixing these! They are listed here for the purpose of'
echo '# regression testing during builds.'
echo '# Format: <Failed test>, Error <Make error code> [(ignored)]'
echo '#'
grep 'make\[.*\]:.* \[/.*' $1 | sed -e's,^.*/,,g' -e 's/\]/,/g' | sort
|