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"
176 # include environment variables
177 if [[ -n "$datafiles" ]]; then
178 for datafile
in $datafiles; do
183 if [[ -n "$gczeal" && "$buildtype" != "debug" ]]; then
184 error
"gczeal is supported for buildtype debug and not $buildtype"
187 dumpvars product branch buildtype jsshellsourcepath profilename executablepath excludetests includetests crashes timeouts filesonly javascriptoptions datafiles |
sed "s|^|arguments: |"
193 if [[ -z "$branch" ||
-z "$buildtype" ||
-z "$jsshellsourcepath" ]]; then
198 executable
="$jsshellsourcepath/$JS_OBJDIR/js$EXE_EXT"
202 if [[ -z "$branch" ||
-z "$buildtype" ||
-z "$executablepath" ||
-z "$profilename" ]]; then
206 executable
=`get_executable $product $branch $executablepath`
210 echo "Unknown product: $product"
215 function shellfileversion
()
257 function browserfileversion
()
299 rm -f finished-
$branch-$testtype-$buildtype
301 if ! make failures.txt
; then
302 error
"during make failures.txt" $LINENO
305 includetestsfile
="included-$branch-$testtype-$buildtype.tests"
306 rm -f $includetestsfile
307 touch $includetestsfile
309 if [[ -z "$includetests" ]]; then
310 # by default include tests appropriate for the branch
311 includetests
="e4x ecma ecma_2 ecma_3 js1_1 js1_2 js1_3 js1_4 js1_5 js1_6"
317 includetests
="$includetests js1_7"
320 includetests
="$includetests js1_7 js1_8"
323 includetests
="$includetests js1_7 js1_8 ecma_3_1 js1_8_1"
328 for i
in $includetests; do
329 if [[ -f "$i" ]]; then
330 echo "# including $i" >> $includetestsfile
331 if echo $i |
grep -q '\.js$'; then
332 echo $i >> $includetestsfile
334 cat $i >> $includetestsfile
336 elif [[ -d "$i" ]]; then
337 find $i -name '*.js' -print |
egrep -v '(shell|browser|template|jsref|userhook.*|\.#.*)\.js' |
sed 's/^\.\///' |
sort >> $includetestsfile
341 excludetestsfile
="excluded-$branch-$testtype-$buildtype.tests"
342 rm -f $excludetestsfile
343 touch $excludetestsfile
345 if [[ -z "$excludetests" ]]; then
346 excludetests
="spidermonkey-n-$branch.tests performance-$branch.tests"
349 for e
in $excludetests; do
350 if [[ -f "$e" ]]; then
351 echo "# excluding $e" >> $excludetestsfile
352 if echo $e |
grep -q '\.js$'; then
353 echo $e >> $excludetestsfile
355 cat $e >> $excludetestsfile
357 elif [[ -d "$e" ]]; then
358 find $e -name '*.js' -print |
egrep -v '(shell|browser|template|jsref|userhook.*|\.#.*)\.js' |
sed 's/^\.\///' |
sort >> $excludetestsfile
362 # convert the numeric speed rating to a prose value
363 if [[ $TEST_CPUSPEED -lt 4 ]]; then
365 elif [[ $TEST_CPUSPEED -lt 9 ]]; then
371 if [[ -z "$TEST_MOZILLA_HG" ]]; then
374 repo
=`basename $TEST_MOZILLA_HG`
378 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|[.][*]),"
380 if [[ -z "$timeouts" ]]; then
381 echo "# exclude tests that time out" >> $excludetestsfile
382 # echo "$pattern .*TEST_EXITSTATUS=TIMED OUT," >> $excludetestsfile
383 egrep "$pattern .*TEST_EXITSTATUS=TIMED OUT," failures.txt | \
384 sed 's/.*TEST_ID=\([^,]*\),.*/\1/' |
sort -u >> $excludetestsfile
387 if [[ -z "$crashes" ]]; then
388 echo "# exclude tests that crash" >> $excludetestsfile
389 # echo "$pattern .*TEST_EXITSTATUS=(CRASHED|ABNORMAL)" >> $excludetestsfile
390 egrep "$pattern .*TEST_EXITSTATUS=(CRASHED|ABNORMAL)" failures.txt | \
391 sed 's/.*TEST_ID=\([^,]*\),.*/\1/' |
sort -u >> $excludetestsfile
395 cat $includetestsfile |
sed 's|^|include: |'
396 cat $excludetestsfile |
sed 's|^|exclude: |'
400 echo "JavaScriptTest: Begin Run"
401 cat $includetestsfile |
while read jsfile
403 if echo $jsfile |
grep -q '^#'; then
407 if ! grep -q $jsfile $excludetestsfile; then
409 version
=`shellfileversion $jsfile`
411 subsuitetestdir
=`dirname $jsfile`
412 suitetestdir
=`dirname $subsuitetestdir`
413 echo "JavaScriptTest: Begin Test $jsfile"
414 if eval $TIMECOMMAND timed_run.py
$TEST_JSEACH_TIMEOUT \"$jsfile\" \
416 $executable -v $version \
422 -f $suitetestdir/shell.js \
423 -f $subsuitetestdir/shell.js \
425 -f .
/js-test-driver-end.js
; then
430 if [[ $rc == 99 ]]; then
431 # note that this loop is executing in a sub-process
432 # error will terminate the sub-process but will transfer
433 # control to the next statement following the loop which
434 # in this case is the "End Run" output which incorrectly
435 # labels the test run as completed.
436 error
"User Interrupt"
438 echo "JavaScriptTest: End Test $jsfile"
442 if [[ $rc != 0 ]]; then
445 echo "JavaScriptTest: End Run"
449 urllist
="urllist-$branch-$testtype-$buildtype.tests"
450 urlhtml
="urllist-$branch-$testtype-$buildtype.html"
452 rm -f $urllist $urlhtml
455 <html xmlns="http://www.w3.org/1999/xhtml">
457 <title>JavaScript Tests</title>
463 cat $includetestsfile |
while read jsfile
465 if echo $jsfile |
grep -q '^#'; then
469 if ! grep -q $jsfile $excludetestsfile; then
471 version
=";version=`browserfileversion $jsfile`"
473 echo "http://$TEST_HTTP/$TEST_WWW_JS/js-test-driver-standards.html?test=$jsfile;language=type;text/javascript$version$gczealbrowser$jitbrowser" >> $urllist
474 echo "<li><a href='http://$TEST_HTTP/$TEST_WWW_JS/js-test-driver-standards.html?test=$jsfile;language=type;text/javascript$version$gczealbrowser$jitbrowser'>$jsfile</a></li>" >> $urlhtml
478 cat >> $urlhtml <<EOF
486 if [[ -z "$filesonly" ]]; then
487 echo "JavaScriptTest: Begin Run"
488 cat "$urllist" |
while read url
;
490 edit-talkback.sh
-p "$product" -b "$branch" -x "$executablepath" -i "$url"
491 jsfile
=`echo $url | sed "s|http://$TEST_HTTP/$TEST_WWW_JS/js-test-driver-standards.html?test=\([^;]*\);.*|\1|"`
492 echo "JavaScriptTest: Begin Test $jsfile"
493 if eval $TIMECOMMAND timed_run.py
$TEST_JSEACH_TIMEOUT \"$jsfile\" \
495 \"$executable\" -P \"$profilename\" \
496 -spider -start -quit \
498 -depth 0 -timeout \"$TEST_JSEACH_PAGE_TIMEOUT\" \
499 -hook \"http
://$TEST_HTTP/$TEST_WWW_JS/userhookeach.js
\"; then
504 if [[ $rc == 99 ]]; then
505 error
"User Interrupt"
507 echo "JavaScriptTest: End Test $jsfile"
509 echo "JavaScriptTest: End Run"