2 # -*- Mode: Shell-script; tab-width: 4; indent-tabs-mode: nil; -*-
4 # ***** BEGIN LICENSE BLOCK *****
5 # Version: MPL 1.1/GPL 2.0/LGPL 2.1
7 # The contents of this file are subject to the Mozilla Public License Version
8 # 1.1 (the "License"); you may not use this file except in compliance with
9 # the License. You may obtain a copy of the License at
10 # http://www.mozilla.org/MPL/
12 # Software distributed under the License is distributed on an "AS IS" basis,
13 # WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
14 # for the specific language governing rights and limitations under the
17 # The Original Code is Mozilla JavaScript Testing Utilities
19 # The Initial Developer of the Original Code is
20 # Mozilla Corporation.
21 # Portions created by the Initial Developer are Copyright (C) 2007
22 # the Initial Developer. All Rights Reserved.
24 # Contributor(s): Bob Clary <bclary@bclary.com>
26 # Alternatively, the contents of this file may be used under the terms of
27 # either the GNU General Public License Version 2 or later (the "GPL"), or
28 # the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
29 # in which case the provisions of the GPL or the LGPL are applicable instead
30 # of those above. If you wish to allow use of your version of this file only
31 # under the terms of either the GPL or the LGPL, and not to allow others to
32 # use your version of this file under the terms of the MPL, indicate your
33 # decision by deleting the provisions above and replace them with the notice
34 # and other provisions required by the GPL or the LGPL. If you do not delete
35 # the provisions above, a recipient may use your version of this file under
36 # the terms of any one of the MPL, the GPL or the LGPL.
38 # ***** END LICENSE BLOCK *****
40 if [[ -z "$TEST_DIR" ]]; then
44 TEST_DIR, the location of the Sisyphus framework,
45 is required to be set prior to calling this script.
50 if [[ ! -e $TEST_DIR/bin
/library.sh
]]; then
51 echo "TEST_DIR=$TEST_DIR"
53 echo "This script requires the Sisyphus testing framework. Please "
54 echo "cvs check out the Sisyphys framework from mozilla/testing/sisyphus"
55 echo "and set the environment variable TEST_DIR to the directory where it"
62 source $TEST_DIR/bin
/library.sh
64 TEST_JSDIR
=${TEST_JSDIR:-$TEST_DIR/tests/mozilla.org/js}
66 TEST_JSSHELL_TIMEOUT
=${TEST_JSSHELL_TIMEOUT:-480}
67 TEST_JSEACH_TIMEOUT
=${TEST_JSEACH_TIMEOUT:-485}
68 TEST_JSEACH_PAGE_TIMEOUT
=${TEST_JSEACH_PAGE_TIMEOUT:-480}
69 TEST_JSALL_TIMEOUT
=${TEST_JSALL_TIMEOUT:-21600}
70 TEST_WWW_JS
=`echo $TEST_JSDIR|sed "s|$TEST_DIR||"`
78 usage: test.sh -p product -b branch -T buildtype -x executablepath -N profilename \\
79 [-X excludetests] [-I includetests] [-c] [-t] [-F] [-d datafiles]
82 =============== ============================================================
83 -p product required. firefox|thunderbird|js
84 -b branch required. 1.8.0|1.8.1|1.9.0|1.9.1
85 -s jsshellsourcepath required for shell. path to js shell source directory mozilla/js/src
86 -T buildtype required. one of opt debug
87 -x executablepath required for browser. directory-tree containing executable 'product'
88 -N profilename required for browser. profile name
89 -X excludetests optional. By default the test will exclude the
90 tests listed in spidermonkey-n-\$branch.tests,
91 performance-\$branch.tests. excludetests is a list of either
92 individual tests, manifest files or sub-directories which
93 will override the default exclusion list.
94 -I includetests optional. By default the test will include the
95 JavaScript tests appropriate for the branch. includetests is a
96 list of either individual tests, manifest files or
97 sub-directories which will override the default inclusion
99 -c optional. By default the test will exclude tests
100 which crash on this branch, test type, build type and
101 operating system. -c will include tests which crash.
102 Typically this should only be used in combination with -R.
103 This has no effect on shell based tests which execute crash
105 -t optional. By default the test will exclude tests
106 which time out on this branch, test type, build type and
107 operating system. -t will include tests which timeout.
108 -J jsoptions optional. Set JavaScript options:
109 -Z n Set gczeal to n. Currently, only valid for
110 debug builds of Gecko 1.8.1.15, 1.9.0 and later.
111 -z optional. use split objects in the shell.
112 -j optional. use JIT in the shell. Only available on 1.9.1 and later
113 -F optional. Just generate file lists without running any tests.
114 -d datafiles optional. one or more filenames of files containing
115 environment variable definitions to be included.
117 note that the environment variables should have the same
118 names as in the "variable" column.
120 if an argument contains more than one value, it must be quoted.
125 while getopts "p:b:s:T:x:N:d:X:I:J:RctF" optname
135 jsshellsourcepath
=$OPTARG;;
137 profilename
=$OPTARG;;
139 executablepath
=$OPTARG;;
141 excludetests
=$OPTARG;;
143 includetests
=$OPTARG;;
151 javascriptoptions
=$OPTARG
153 d
) datafiles
=$OPTARG;;
157 if [[ -n "$javascriptoptions" ]]; then
159 while getopts "Z:jz" optname
$javascriptoptions; do
162 gczealshell
="-Z $OPTARG"
163 gczealbrowser
=";gczeal=$OPTARG"
175 # include environment variables
176 if [[ -n "$datafiles" ]]; then
177 for datafile
in $datafiles; do
182 if [[ -n "$gczeal" && "$buildtype" != "debug" ]]; then
183 error
"gczeal is supported for buildtype debug and not $buildtype"
186 dumpvars product branch buildtype jsshellsourcepath profilename executablepath excludetests includetests crashes timeouts filesonly javascriptoptions datafiles |
sed "s|^|arguments: |"
192 if [[ -z "$branch" ||
-z "$buildtype" ||
-z "$jsshellsourcepath" ]]; then
197 executable
="$jsshellsourcepath/$JS_OBJDIR/js$EXE_EXT"
201 if [[ -z "$branch" ||
-z "$buildtype" ||
-z "$executablepath" ||
-z "$profilename" ]]; then
205 executable
=`get_executable $product $branch $executablepath`
209 echo "Unknown product: $product"
214 function shellfileversion
()
256 function browserfileversion
()
298 rm -f finished-
$branch-$testtype-$buildtype
300 if ! make failures.txt
; then
301 error
"during make failures.txt" $LINENO
304 includetestsfile
="included-$branch-$testtype-$buildtype.tests"
305 rm -f $includetestsfile
306 touch $includetestsfile
308 if [[ -z "$includetests" ]]; then
309 # by default include tests appropriate for the branch
310 includetests
="e4x ecma ecma_2 ecma_3 js1_1 js1_2 js1_3 js1_4 js1_5 js1_6"
316 includetests
="$includetests js1_7"
319 includetests
="$includetests js1_7 js1_8"
322 includetests
="$includetests js1_7 js1_8 ecma_3_1 js1_8_1"
327 for i
in $includetests; do
328 if [[ -f "$i" ]]; then
329 echo "# including $i" >> $includetestsfile
330 if echo $i |
grep -q '\.js$'; then
331 echo $i >> $includetestsfile
333 cat $i >> $includetestsfile
335 elif [[ -d "$i" ]]; then
336 find $i -name '*.js' -print |
egrep -v '(shell|browser|template|jsref|userhook.*|\.#.*)\.js' |
sed 's/^\.\///' |
sort >> $includetestsfile
340 excludetestsfile
="excluded-$branch-$testtype-$buildtype.tests"
341 rm -f $excludetestsfile
342 touch $excludetestsfile
344 if [[ -z "$excludetests" ]]; then
345 excludetests
="spidermonkey-n-$branch.tests performance-$branch.tests"
348 for e
in $excludetests; do
349 if [[ -f "$e" ]]; then
350 echo "# excluding $e" >> $excludetestsfile
351 if echo $e |
grep -q '\.js$'; then
352 echo $e >> $excludetestsfile
354 cat $e >> $excludetestsfile
356 elif [[ -d "$e" ]]; then
357 find $e -name '*.js' -print |
egrep -v '(shell|browser|template|jsref|userhook.*|\.#.*)\.js' |
sed 's/^\.\///' |
sort >> $excludetestsfile
361 # convert the numeric speed rating to a prose value
362 if [[ $TEST_CPUSPEED -lt 4 ]]; then
364 elif [[ $TEST_CPUSPEED -lt 9 ]]; then
370 if [[ -z "$TEST_MOZILLA_HG" ]]; then
373 repo
=`basename $TEST_MOZILLA_HG`
377 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|[.][*]),"
379 if [[ -z "$timeouts" ]]; then
380 echo "# exclude tests that time out" >> $excludetestsfile
381 echo "$pattern .*TEST_EXITSTATUS=TIMED OUT," >> $excludetestsfile
382 egrep "$pattern .*TEST_EXITSTATUS=TIMED OUT," failures.txt | \
383 sed 's/.*TEST_ID=\([^,]*\),.*/\1/' |
sort -u >> $excludetestsfile
386 if [[ -z "$crashes" ]]; then
387 echo "# exclude tests that crash" >> $excludetestsfile
388 echo "$pattern .*TEST_EXITSTATUS=(CRASHED|ABNORMAL)" >> $excludetestsfile
389 egrep "$pattern .*TEST_EXITSTATUS=(CRASHED|ABNORMAL)" failures.txt | \
390 sed 's/.*TEST_ID=\([^,]*\),.*/\1/' |
sort -u >> $excludetestsfile
394 cat $includetestsfile |
sed 's|^|include: |'
395 cat $excludetestsfile |
sed 's|^|exclude: |'
399 echo "JavaScriptTest: Begin Run"
400 cat $includetestsfile |
while read jsfile
402 if echo $jsfile |
grep -q '^#'; then
406 if ! grep -q $jsfile $excludetestsfile; then
408 version
=`shellfileversion $jsfile`
410 subsuitetestdir
=`dirname $jsfile`
411 suitetestdir
=`dirname $subsuitetestdir`
412 echo "JavaScriptTest: Begin Test $jsfile"
413 if eval $TIMECOMMAND timed_run.py
$TEST_JSEACH_TIMEOUT \"$jsfile\" \
415 $executable -v $version \
421 -f $suitetestdir/shell.js \
422 -f $subsuitetestdir/shell.js \
424 -f .
/js-test-driver-end.js
; then
429 if [[ $rc == 99 ]]; then
430 # note that this loop is executing in a sub-process
431 # error will terminate the sub-process but will transfer
432 # control to the next statement following the loop which
433 # in this case is the "End Run" output which incorrectly
434 # labels the test run as completed.
435 error
"User Interrupt"
437 echo "JavaScriptTest: End Test $jsfile"
441 if [[ $rc != 0 ]]; then
444 echo "JavaScriptTest: End Run"
448 urllist
="urllist-$branch-$testtype-$buildtype.tests"
449 urlhtml
="urllist-$branch-$testtype-$buildtype.html"
451 rm -f $urllist $urlhtml
454 <html xmlns="http://www.w3.org/1999/xhtml">
456 <title>JavaScript Tests</title>
462 cat $includetestsfile |
while read jsfile
464 if echo $jsfile |
grep -q '^#'; then
468 if ! grep -q $jsfile $excludetestsfile; then
470 version
=";version=`browserfileversion $jsfile`"
472 echo "http://$TEST_HTTP/$TEST_WWW_JS/js-test-driver-standards.html?test=$jsfile;language=type;text/javascript$version$gczealbrowser" >> $urllist
473 echo "<li><a href='http://$TEST_HTTP/$TEST_WWW_JS/js-test-driver-standards.html?test=$jsfile;language=type;text/javascript$version$gczealbrowser'>$jsfile</a></li>" >> $urlhtml
477 cat >> $urlhtml <<EOF
485 if [[ -z "$filesonly" ]]; then
486 echo "JavaScriptTest: Begin Run"
487 cat "$urllist" |
while read url
;
489 edit-talkback.sh
-p "$product" -b "$branch" -x "$executablepath" -i "$url"
490 jsfile
=`echo $url | sed "s|http://$TEST_HTTP/$TEST_WWW_JS/js-test-driver-standards.html?test=\([^;]*\);.*|\1|"`
491 echo "JavaScriptTest: Begin Test $jsfile"
492 if eval $TIMECOMMAND timed_run.py
$TEST_JSEACH_TIMEOUT \"$jsfile\" \
494 \"$executable\" -P \"$profilename\" \
495 -spider -start -quit \
497 -depth 0 -timeout \"$TEST_JSEACH_PAGE_TIMEOUT\" \
498 -hook \"http
://$TEST_HTTP/$TEST_WWW_JS/userhookeach.js
\"; then
503 if [[ $rc == 99 ]]; then
504 error
"User Interrupt"
506 echo "JavaScriptTest: End Test $jsfile"
508 echo "JavaScriptTest: End Run"