xfstests: kill useless test owner fields

Back many years ago, the owner field was used to email the test
owner when auto-qa failed that test. It is not needed anymore - if
you want to know who wrote the test, look it up in git....

Script used was:

$ sed -i -e "/^# creator/d" -e "/^owner/d" [0-3][0-9][0-9]

Signed-off-by: Dave Chinner <dchinner@redhat.com>
Reviewed-by: Phil White <pwhite@sgi.com>
[rjohnston@sgi.com added TOT changes]
Signed-off-by: Rich Johnston <rjohnston@sgi.com>
This commit is contained in:
Dave Chinner
2013-03-15 12:27:47 +00:00
committed by Rich Johnston
parent b020416d51
commit 0925cbea74
310 changed files with 30 additions and 650 deletions
-13
View File
@@ -32,17 +32,6 @@ _cleanup()
:
}
# fqdn for localhost
_get_fqdn()
{
NSLOOKUP_PROG="`set_prog_path nslookup`"
if [ "$NSLOOKUP_PROG" = "" ]; then
getent hosts `uname -n` | awk '{print $2}'
else
$NSLOOKUP_PROG `hostname` | $AWK_PROG '{ if ($1 == "Name:") print $2 }'
fi
}
if [ ! -f group ]
then
echo "Creating the group index ..."
@@ -116,8 +105,6 @@ cat <<End-of-File >$id
#-----------------------------------------------------------------------
#
# creator
owner=$USER@`_get_fqdn`
seq=\`basename \$0\`
echo "QA output created by \$seq"