#!/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 # # 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 ***** if [[ -z "$TEST_DIR" ]]; then cat <> $includetestsfile if echo $i | grep -q '\.js$'; then echo $i >> $includetestsfile else cat $i >> $includetestsfile fi elif [[ -d "$i" ]]; then find $i -name '*.js' -print | egrep -v '(shell|browser|template|jsref|userhook.*|\.#.*)\.js' | sed 's/^\.\///' | sort >> $includetestsfile fi done excludetestsfile="excluded-$branch-$testtype-$buildtype.tests" rm -f $excludetestsfile touch $excludetestsfile if [[ -z "$excludetests" ]]; then excludetests="spidermonkey-n-$branch.tests performance-$branch.tests" fi for e in $excludetests; do if [[ -f "$e" ]]; then echo "# excluding $e" >> $excludetestsfile if echo $e | grep -q '\.js$'; then echo $e >> $excludetestsfile else cat $e >> $excludetestsfile fi elif [[ -d "$e" ]]; then find $e -name '*.js' -print | egrep -v '(shell|browser|template|jsref|userhook.*|\.#.*)\.js' | sed 's/^\.\///' | sort >> $excludetestsfile fi done # convert the numeric speed rating to a prose value if [[ $TEST_CPUSPEED -lt 4 ]]; then TEST_CPUSPEED=slow elif [[ $TEST_CPUSPEED -lt 9 ]]; then TEST_CPUSPEED=medium else TEST_CPUSPEED=fast fi if [[ -z "$TEST_MOZILLA_HG" ]]; then repo=CVS else repo=`basename $TEST_MOZILLA_HG` fi debug "repo=$repo" pattern="TEST_BRANCH=($branch|[.][*]), TEST_REPO=($repo|[.][*]), TEST_BUILDTYPE=($buildtype|[.][*]), TEST_TYPE=($testtype|[.][*]), TEST_OS=($OSID|[.][*]), TEST_KERNEL=($TEST_KERNEL|[.][*]), TEST_PROCESSORTYPE=($TEST_PROCESSORTYPE|[.][*]), TEST_MEMORY=($TEST_MEMORY|[.][*]), TEST_CPUSPEED=($TEST_CPUSPEED|[.][*])," if [[ -z "$timeouts" ]]; then echo "# exclude tests that time out" >> $excludetestsfile echo "$pattern .*TEST_EXITSTATUS=TIMED OUT," >> $excludetestsfile egrep "$pattern .*TEST_EXITSTATUS=TIMED OUT," failures.txt | \ sed 's/.*TEST_ID=\([^,]*\),.*/\1/' | sort -u >> $excludetestsfile fi if [[ -z "$crashes" ]]; then echo "# exclude tests that crash" >> $excludetestsfile echo "$pattern .*TEST_EXITSTATUS=(CRASHED|ABNORMAL)" >> $excludetestsfile egrep "$pattern .*TEST_EXITSTATUS=(CRASHED|ABNORMAL)" failures.txt | \ sed 's/.*TEST_ID=\([^,]*\),.*/\1/' | sort -u >> $excludetestsfile fi cat $includetestsfile | sed 's|^|include: |' cat $excludetestsfile | sed 's|^|exclude: |' case $testtype in shell) echo "JavaScriptTest: Begin Run" cat $includetestsfile | while read jsfile do if echo $jsfile | grep -q '^#'; then continue fi if ! grep -q $jsfile $excludetestsfile; then result=`echo $jsfile | sed 's/.*js\([0-9]\)_\([0-9]\).*/\1.\2/'` case $result in 1.5) version="150";; 1.6) version="160";; 1.7) version="170";; 1.8) version="180";; 1.9) version="190";; 2.0) version="200";; *) version="150";; esac subsuitetestdir=`dirname $jsfile` suitetestdir=`dirname $subsuitetestdir` echo "JavaScriptTest: Begin Test $jsfile" if eval $TIMECOMMAND timed_run.py $TEST_JSEACH_TIMEOUT \"$jsfile\" \ $EXECUTABLE_DRIVER \ $executable -v $version \ -S 524288 \ $gczealshell \ -f ./shell.js \ -f $suitetestdir/shell.js \ -f $subsuitetestdir/shell.js \ -f ./$jsfile \ -f ./js-test-driver-end.js; then true else rc=$? fi if [[ $rc == 99 ]]; then error "User Interrupt" fi echo "JavaScriptTest: End Test $jsfile" fi done echo "JavaScriptTest: End Run" ;; browser) urllist="urllist-$branch-$testtype-$buildtype.tests" urlhtml="urllist-$branch-$testtype-$buildtype.html" rm -f $urllist $urlhtml cat > $urlhtml < JavaScript Tests
    EOF cat $includetestsfile | while read jsfile do if echo $jsfile | grep -q '^#'; then continue fi if ! grep -q $jsfile $excludetestsfile; then result=`echo $jsfile | sed 's/.*js\([0-9]\)_\([0-9]\).*/\1.\2/'` case $result in 1.5) version=";version=1.5";; 1.6) version=";version=1.6";; 1.7) version=";version=1.7";; 1.8) version=";version=1.8";; 1.9) version=";version=1.9";; 2.0) version=";version=2.0";; *) version="";; esac echo "http://$TEST_HTTP/$TEST_WWW_JS/js-test-driver-standards.html?test=$jsfile;language=type;text/javascript$version$gczealbrowser" >> $urllist echo "
  • $jsfile
  • " >> $urlhtml fi done cat >> $urlhtml < EOF chmod a+r $urlhtml if [[ -z "$filesonly" ]]; then echo "JavaScriptTest: Begin Run" cat "$urllist" | while read url; do edit-talkback.sh -p "$product" -b "$branch" -x "$executablepath" -i "$url" jsfile=`echo $url | sed "s|http://$TEST_HTTP/$TEST_WWW_JS/js-test-driver-standards.html?test=\([^;]*\);.*|\1|"` echo "JavaScriptTest: Begin Test $jsfile" if eval $TIMECOMMAND timed_run.py $TEST_JSEACH_TIMEOUT \"$jsfile\" \ $EXECUTABLE_DRIVER \ \"$executable\" -P \"$profilename\" \ -spider -start -quit \ -uri \"$url\" \ -depth 0 -timeout \"$TEST_JSEACH_PAGE_TIMEOUT\" \ -hook \"http://$TEST_HTTP/$TEST_WWW_JS/userhookeach.js\"; then true else rc=$? fi if [[ $rc == 99 ]]; then error "User Interrupt" fi echo "JavaScriptTest: End Test $jsfile" done echo "JavaScriptTest: End Run" fi ;; *) ;; esac popd