2007-12-07 07:25:22 -08:00
|
|
|
#!/bin/bash -e
|
|
|
|
# -*- Mode: Shell-script; tab-width: 4; indent-tabs-mode: nil; -*-
|
|
|
|
|
|
|
|
# ***** BEGIN LICENSE BLOCK *****
|
|
|
|
# Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
#
|
|
|
|
# The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
# 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
# the License. You may obtain a copy of the License at
|
|
|
|
# http://www.mozilla.org/MPL/
|
|
|
|
#
|
|
|
|
# Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
# for the specific language governing rights and limitations under the
|
|
|
|
# License.
|
|
|
|
#
|
|
|
|
# The Original Code is Mozilla JavaScript Testing Utilities
|
|
|
|
#
|
|
|
|
# The Initial Developer of the Original Code is
|
|
|
|
# Mozilla Corporation.
|
|
|
|
# Portions created by the Initial Developer are Copyright (C) 2007
|
|
|
|
# the Initial Developer. All Rights Reserved.
|
|
|
|
#
|
|
|
|
# Contributor(s): Bob Clary <bclary@bclary.com>
|
|
|
|
#
|
|
|
|
# Alternatively, the contents of this file may be used under the terms of
|
|
|
|
# either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
# in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
# of those above. If you wish to allow use of your version of this file only
|
|
|
|
# under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
# use your version of this file under the terms of the MPL, indicate your
|
|
|
|
# decision by deleting the provisions above and replace them with the notice
|
|
|
|
# and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
# the provisions above, a recipient may use your version of this file under
|
|
|
|
# the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
#
|
|
|
|
# ***** END LICENSE BLOCK *****
|
|
|
|
|
2008-04-03 09:22:29 -07:00
|
|
|
if [[ -z "$TEST_DIR" ]]; then
|
2008-06-25 15:14:01 -07:00
|
|
|
cat <<EOF
|
2008-04-03 09:22:29 -07:00
|
|
|
`basename $0`: error
|
2007-12-07 07:25:22 -08:00
|
|
|
|
2008-04-03 09:22:29 -07:00
|
|
|
TEST_DIR, the location of the Sisyphus framework,
|
|
|
|
is required to be set prior to calling this script.
|
|
|
|
EOF
|
2008-06-25 15:14:01 -07:00
|
|
|
exit 2
|
2008-04-03 09:22:29 -07:00
|
|
|
fi
|
|
|
|
|
|
|
|
if [[ ! -e $TEST_DIR/bin/library.sh ]]; then
|
2007-12-07 07:25:22 -08:00
|
|
|
echo "TEST_DIR=$TEST_DIR"
|
|
|
|
echo ""
|
|
|
|
echo "This script requires the Sisyphus testing framework. Please "
|
|
|
|
echo "cvs check out the Sisyphys framework from mozilla/testing/sisyphus"
|
|
|
|
echo "and set the environment variable TEST_DIR to the directory where it"
|
|
|
|
echo "located."
|
|
|
|
echo ""
|
|
|
|
|
|
|
|
exit 2
|
|
|
|
fi
|
|
|
|
|
2008-04-03 09:22:29 -07:00
|
|
|
source $TEST_DIR/bin/library.sh
|
|
|
|
|
2008-07-21 15:18:15 -07:00
|
|
|
TEST_JSDIR=${TEST_JSDIR:-$TEST_DIR/tests/mozilla.org/js}
|
2007-12-07 07:25:22 -08:00
|
|
|
|
|
|
|
usage()
|
|
|
|
{
|
|
|
|
cat <<EOF
|
|
|
|
usage: process-logs.sh.sh -l testlogfiles -A arch -K kernel
|
|
|
|
|
|
|
|
variable description
|
|
|
|
=============== ============================================================
|
|
|
|
testlogfiles The test log to be processed. If testlogfiles is a file
|
|
|
|
pattern it must be single quoted to prevent the shell from
|
|
|
|
expanding it before it is passed to the script.
|
|
|
|
EOF
|
|
|
|
exit 2
|
|
|
|
}
|
|
|
|
|
2008-07-23 22:04:56 -07:00
|
|
|
while getopts "l:" optname;
|
2008-06-25 15:14:01 -07:00
|
|
|
do
|
|
|
|
case $optname in
|
|
|
|
l) testlogfiles=$OPTARG;;
|
|
|
|
esac
|
2007-12-07 07:25:22 -08:00
|
|
|
done
|
|
|
|
|
|
|
|
if [[ -z "$testlogfiles" ]]; then
|
|
|
|
usage
|
|
|
|
fi
|
|
|
|
|
|
|
|
for testlogfile in `ls $testlogfiles`; do
|
|
|
|
|
2008-02-06 12:05:33 -08:00
|
|
|
debug "testlogfile=$testlogfile"
|
|
|
|
|
2008-06-25 15:14:01 -07:00
|
|
|
case $testlogfile in
|
|
|
|
*.log)
|
|
|
|
worktestlogfile=$testlogfile
|
|
|
|
;;
|
|
|
|
*.log.bz2)
|
|
|
|
worktestlogfile=`mktemp $testlogfile.XXXXXX`
|
|
|
|
bunzip2 -c $testlogfile > $worktestlogfile
|
|
|
|
;;
|
|
|
|
*.log.gz)
|
|
|
|
worktestlogfile=`mktemp $testlogfile.XXXXXX`
|
|
|
|
gunzip -c $testlogfile > $worktestlogfile
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
echo "unknown log type: $f"
|
|
|
|
exit 2
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2007-12-07 07:25:22 -08:00
|
|
|
case "$testlogfile" in
|
|
|
|
*,js,*) testtype=shell;;
|
|
|
|
*,firefox,*) testtype=browser;;
|
2009-01-14 07:16:17 -08:00
|
|
|
*,thunderbird,*) testtype=browser;;
|
2008-10-22 04:50:22 -07:00
|
|
|
*,fennec,*) testtype=browser;;
|
2008-02-06 12:05:33 -08:00
|
|
|
*) error "unknown testtype in logfile $testlogfile" $LINENO;;
|
2007-12-07 07:25:22 -08:00
|
|
|
esac
|
|
|
|
|
2008-02-06 12:05:33 -08:00
|
|
|
debug "testtype=$testtype"
|
|
|
|
|
2007-12-07 07:25:22 -08:00
|
|
|
case "$testlogfile" in
|
2008-10-30 15:17:35 -07:00
|
|
|
*,nightly*) buildtype=nightly;;
|
2007-12-07 07:25:22 -08:00
|
|
|
*,opt,*) buildtype=opt;;
|
|
|
|
*,debug,*) buildtype=debug;;
|
2008-02-06 12:05:33 -08:00
|
|
|
*) error "unknown buildtype in logfile $testlogfile" $LINENO;
|
2007-12-07 07:25:22 -08:00
|
|
|
esac
|
|
|
|
|
2008-02-06 12:05:33 -08:00
|
|
|
debug "buildtype=$buildtype"
|
|
|
|
|
2007-12-07 07:25:22 -08:00
|
|
|
case "$testlogfile" in
|
|
|
|
*,1.8.0*) branch=1.8.0;;
|
|
|
|
*,1.8.1*) branch=1.8.1;;
|
|
|
|
*,1.9.0*) branch=1.9.0;;
|
2008-06-25 15:14:01 -07:00
|
|
|
*,1.9.1*) branch=1.9.1;;
|
2009-01-14 07:16:17 -08:00
|
|
|
*,1.9.2*) branch=1.9.2;;
|
2007-12-07 07:25:22 -08:00
|
|
|
*)
|
2008-06-25 15:14:01 -07:00
|
|
|
branch=`grep -m 1 '^environment: TEST_BRANCH=' $worktestlogfile | sed 's|.*TEST_BRANCH=\(.*\)|\1|'`
|
2007-12-07 07:25:22 -08:00
|
|
|
if [[ -z "$branch" ]]; then
|
2008-02-06 12:05:33 -08:00
|
|
|
error "unknown branch in logfile $testlogfile" $LINENO
|
2007-12-07 07:25:22 -08:00
|
|
|
fi
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2008-02-06 12:05:33 -08:00
|
|
|
debug "branch=$branch"
|
|
|
|
|
2009-01-14 07:16:17 -08:00
|
|
|
repo=`grep -m 1 '^environment: TEST_MOZILLA_HG=' $worktestlogfile | sed 's|.*TEST_MOZILLA_HG=http://hg.mozilla.org.*/\([^\/]*\)|\1|'`
|
2008-07-23 22:04:56 -07:00
|
|
|
if [[ -z "$repo" ]]; then
|
|
|
|
repo=CVS
|
|
|
|
fi
|
|
|
|
debug "repo=$repo"
|
|
|
|
|
2007-12-07 07:25:22 -08:00
|
|
|
case "$testlogfile" in
|
2008-06-25 15:14:01 -07:00
|
|
|
*,nt,*) OSID=nt;;
|
2007-12-07 07:25:22 -08:00
|
|
|
*,linux,*) OSID=linux;;
|
2008-06-25 15:14:01 -07:00
|
|
|
*,darwin,*) OSID=darwin;;
|
2007-12-07 07:25:22 -08:00
|
|
|
*)
|
2008-06-25 15:14:01 -07:00
|
|
|
OSID=`grep -m 1 '^environment: OSID=' $worktestlogfile | sed 's|.*OSID=\(.*\)|\1|'`
|
2007-12-07 07:25:22 -08:00
|
|
|
if [[ -z "$OSID" ]]; then
|
2008-02-06 12:05:33 -08:00
|
|
|
error "unknown OS in logfile $testlogfile" $LINENO
|
2007-12-07 07:25:22 -08:00
|
|
|
fi
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2008-02-06 12:05:33 -08:00
|
|
|
debug "OSID=$OSID"
|
|
|
|
|
2008-07-23 22:04:56 -07:00
|
|
|
kernel=`grep -m 1 '^environment: TEST_KERNEL=' $worktestlogfile | sed 's|.*TEST_KERNEL=\(.*\)|\1|'`
|
|
|
|
if [[ "$OSID" == "linux" ]]; then
|
|
|
|
kernel=`echo $kernel | sed 's|\([0-9]*\)\.\([0-9]*\)\.\([0-9]*\).*|\1.\2.\3|'`
|
2007-12-07 07:25:22 -08:00
|
|
|
fi
|
2008-02-06 12:05:33 -08:00
|
|
|
debug "kernel=$kernel"
|
|
|
|
|
2008-07-23 22:04:56 -07:00
|
|
|
arch=`grep -m 1 '^environment: TEST_PROCESSORTYPE=' $worktestlogfile | sed 's|.*TEST_PROCESSORTYPE=\(.*\)|\1|'`
|
2008-02-06 12:05:33 -08:00
|
|
|
debug "arch=$arch"
|
|
|
|
|
2008-06-25 15:14:01 -07:00
|
|
|
memory=`grep -m 1 '^environment: TEST_MEMORY=' $worktestlogfile | sed 's|.*TEST_MEMORY=\(.*\)|\1|'`
|
|
|
|
speed=`grep -m 1 '^environment: TEST_CPUSPEED=' $worktestlogfile | sed 's|.*TEST_CPUSPEED=\(.*\)|\1|'`
|
|
|
|
|
2008-02-06 12:05:33 -08:00
|
|
|
timezone=`basename $testlogfile | sed 's|^[-0-9]*\([-+]\)\([0-9]\{4,4\}\),.*|\1\2|'`
|
|
|
|
debug "timezone=$timezone"
|
2007-12-07 07:25:22 -08:00
|
|
|
|
2009-01-14 07:16:17 -08:00
|
|
|
jsoptions=`grep -m 1 '^arguments: javascriptoptions=' $worktestlogfile | sed 's|.*javascriptoptions=\(.*\)|\1|'`
|
|
|
|
if [[ -z "$jsoptions" ]]; then
|
|
|
|
jsoptions=none
|
|
|
|
fi
|
|
|
|
debug "jsoptions=$jsoptions"
|
|
|
|
|
2007-12-07 07:25:22 -08:00
|
|
|
outputprefix=$testlogfile
|
|
|
|
|
2008-02-06 12:05:33 -08:00
|
|
|
includetests="included-$branch-$testtype-$buildtype.tests"
|
|
|
|
excludetests="excluded-$branch-$testtype-$buildtype.tests"
|
|
|
|
|
2008-06-25 15:14:01 -07:00
|
|
|
grep '^include: ' $worktestlogfile | sed 's|include: ||' > $TEST_DIR/tests/mozilla.org/js/$includetests
|
|
|
|
grep '^exclude: ' $worktestlogfile | sed 's|exclude: ||' > $TEST_DIR/tests/mozilla.org/js/$excludetests
|
|
|
|
|
|
|
|
$TEST_DIR/tests/mozilla.org/js/known-failures.pl \
|
|
|
|
-b "$branch" \
|
|
|
|
-T "$buildtype" \
|
2008-07-23 22:04:56 -07:00
|
|
|
-R "$repo" \
|
2008-06-25 15:14:01 -07:00
|
|
|
-t "$testtype" \
|
|
|
|
-o "$OSID" \
|
|
|
|
-K "$kernel" \
|
|
|
|
-A "$arch" \
|
|
|
|
-M "$memory" \
|
|
|
|
-S "$speed" \
|
|
|
|
-z "$timezone" \
|
2009-01-14 07:16:17 -08:00
|
|
|
-J "$jsoptions" \
|
2008-06-25 15:14:01 -07:00
|
|
|
-r "$TEST_JSDIR/failures.txt" \
|
|
|
|
-l "$worktestlogfile" \
|
|
|
|
-O "$outputprefix"
|
|
|
|
|
|
|
|
if [[ "$testlogfile" != "$worktestlogfile" ]]; then
|
|
|
|
rm $worktestlogfile
|
|
|
|
unset worktestlogfile
|
|
|
|
fi
|
2007-12-07 07:25:22 -08:00
|
|
|
done
|