bug 467276 - tests for NaN/Infinity.toExponential(...)/toPrecision() should not check range, by szegedia%freemail.hu. Sync with CVS trunk. default tip
bug 352026 - update test to uniquely identify subtest results. sync developer trace tests with js test suite. bug 472619 - update sisyphus to build 1.9.1 from releases/mozilla-1.9.1 and 1.9.2 from mozilla-central. bug 458679 - JavaScript Tests by Igor Bukanov, Jesse Ruderman and Gary Kwong. bug 469855 - allow test parameter to be placed anywhere in query string. bug 469696 - obsolete test for 1.9.1 branch. bug 454142 - JavaScript Test by Gary Kwong. bug 462470 - update spidermonkey-n-1.9.1.tests to include missed test. bug 465366 - JavaScript Test by Boris Zbarsky, Andreas Gal. bug 417131 - JavaScript Test by Igor Bukanov. bug 428366 - JavaScript Test by Blake Kaplan. bug 371802 - JavaScript Test by Brendan Eich. bug 443071 - JavaScript Test by Jesse Ruderman. bug 465133 - JavaScript Test by Jesse Ruderman. git-svn-id: svn://10.0.0.236/trunk@255808 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
@@ -43,11 +43,15 @@ sub getuniversekey
|
||||
my $i;
|
||||
my $key = '';
|
||||
|
||||
dbg("getuniversekey: \$machinerecord=" . recordtostring($machinerecord) . ", \$excludeduniversefield=$excludeduniversefield");
|
||||
if ($DEBUG) {
|
||||
dbg("getuniversekey: \$machinerecord=" . recordtostring($machinerecord) . ", \$excludeduniversefield=$excludeduniversefield");
|
||||
}
|
||||
|
||||
for ($i = 0; $i < @universefields; $i++)
|
||||
{
|
||||
dbg("getuniversekey: \$universefields[$i]=$universefields[$i]");
|
||||
if ($DEBUG) {
|
||||
dbg("getuniversekey: \$universefields[$i]=$universefields[$i]");
|
||||
}
|
||||
|
||||
if ($universefields[$i] ne $excludeduniversefield)
|
||||
{
|
||||
@@ -55,7 +59,9 @@ sub getuniversekey
|
||||
}
|
||||
}
|
||||
|
||||
dbg("getuniversekey=$key");
|
||||
if ($DEBUG) {
|
||||
dbg("getuniversekey=$key");
|
||||
}
|
||||
|
||||
return $key;
|
||||
}
|
||||
@@ -69,31 +75,45 @@ sub getuniverse
|
||||
my @universe = ();
|
||||
my %universehash = ();
|
||||
|
||||
dbg("getuniverse: \$universekey=$universekey, \$excludeduniversefield=$excludeduniversefield");
|
||||
if ($DEBUG) {
|
||||
dbg("getuniverse: \$universekey=$universekey, \$excludeduniversefield=$excludeduniversefield");
|
||||
}
|
||||
|
||||
for ($i = 0; $i < @testruns; $i++)
|
||||
{
|
||||
$testrun = $testruns[$i];
|
||||
dbg("getuniverse: \$testruns[$i]=" . recordtostring($testrun));
|
||||
if ($DEBUG) {
|
||||
dbg("getuniverse: \$testruns[$i]=" . recordtostring($testrun));
|
||||
}
|
||||
$testrununiversekey = getuniversekey($testrun, $excludeduniversefield);
|
||||
dbg("getuniverse: \$testrununiversekey=$testrununiversekey");
|
||||
if ($DEBUG) {
|
||||
dbg("getuniverse: \$testrununiversekey=$testrununiversekey");
|
||||
}
|
||||
if ($testrununiversekey =~ /$universekey/)
|
||||
{
|
||||
dbg("getuniverse: matched \$testrununiversekey=$testrununiversekey to \$universekey=$universekey");
|
||||
if ($DEBUG) {
|
||||
dbg("getuniverse: matched \$testrununiversekey=$testrununiversekey to \$universekey=$universekey");
|
||||
}
|
||||
$value = $testrun->{$excludeduniversefield};
|
||||
|
||||
dbg("getuniverse: \$testrun->{$excludeduniversefield}=$value");
|
||||
if ($DEBUG) {
|
||||
dbg("getuniverse: \$testrun->{$excludeduniversefield}=$value");
|
||||
}
|
||||
|
||||
if (! $universehash{$value} )
|
||||
{
|
||||
dbg("getuniverse: pushing $value");
|
||||
if ($DEBUG) {
|
||||
dbg("getuniverse: pushing $value");
|
||||
}
|
||||
push @universe, ($value);
|
||||
$universehash{$value} = 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
@universe = sort @universe;
|
||||
dbg("getuniverse=" . join(',', @universe));
|
||||
if ($DEBUG) {
|
||||
dbg("getuniverse=" . join(',', @universe));
|
||||
}
|
||||
return @universe;
|
||||
}
|
||||
|
||||
@@ -107,11 +127,15 @@ sub recordtostring
|
||||
for ($j = 0; $j < @recordfields - 1; $j++)
|
||||
{
|
||||
$field = $recordfields[$j];
|
||||
dbg("recordtostring: \$field=$field, \$record->{$field}=$record->{$field}");
|
||||
if ($DEBUG) {
|
||||
dbg("recordtostring: \$field=$field, \$record->{$field}=$record->{$field}");
|
||||
}
|
||||
$line .= "$field=$record->{$field}, ";
|
||||
}
|
||||
$field = $recordfields[$#recordfields];
|
||||
dbg("recordtodtring: \$field=$field, \$record->{$field}= $record->{$field}");
|
||||
if ($DEBUG) {
|
||||
dbg("recordtodtring: \$field=$field, \$record->{$field}= $record->{$field}");
|
||||
}
|
||||
$line .= "$field=$record->{$field}";
|
||||
|
||||
return $line;
|
||||
@@ -124,7 +148,9 @@ sub dumprecords
|
||||
my $prevline = '';
|
||||
my $i;
|
||||
|
||||
dbg("dumping records");
|
||||
if ($DEBUG) {
|
||||
dbg("dumping records");
|
||||
}
|
||||
|
||||
# @records = sort sortrecords @records;
|
||||
|
||||
@@ -178,9 +204,9 @@ BEGIN
|
||||
|
||||
$DEBUG = $ENV{DEBUG};
|
||||
|
||||
@recordfields = ('TEST_ID', 'TEST_BRANCH', 'TEST_REPO', 'TEST_BUILDTYPE', 'TEST_TYPE', 'TEST_OS', 'TEST_KERNEL', 'TEST_PROCESSORTYPE', 'TEST_MEMORY', 'TEST_CPUSPEED', 'TEST_TIMEZONE', 'TEST_RESULT', 'TEST_EXITSTATUS', 'TEST_DESCRIPTION');
|
||||
@sortkeyfields = ('TEST_ID', 'TEST_RESULT', 'TEST_EXITSTATUS', 'TEST_DESCRIPTION', 'TEST_BRANCH', 'TEST_REPO', 'TEST_BUILDTYPE', 'TEST_TYPE', 'TEST_OS', 'TEST_KERNEL', 'TEST_PROCESSORTYPE', 'TEST_MEMORY', 'TEST_CPUSPEED', 'TEST_TIMEZONE', );
|
||||
@universefields = ('TEST_BRANCH', 'TEST_REPO', 'TEST_BUILDTYPE', 'TEST_TYPE', 'TEST_OS', 'TEST_KERNEL', 'TEST_PROCESSORTYPE', 'TEST_MEMORY', 'TEST_CPUSPEED', 'TEST_TIMEZONE');
|
||||
@recordfields = ('TEST_ID', 'TEST_BRANCH', 'TEST_REPO', 'TEST_BUILDTYPE', 'TEST_TYPE', 'TEST_OS', 'TEST_KERNEL', 'TEST_PROCESSORTYPE', 'TEST_MEMORY', 'TEST_CPUSPEED', 'TEST_TIMEZONE', 'TEST_OPTIONS', 'TEST_RESULT', 'TEST_EXITSTATUS', 'TEST_DESCRIPTION');
|
||||
@sortkeyfields = ('TEST_ID', 'TEST_RESULT', 'TEST_EXITSTATUS', 'TEST_DESCRIPTION', 'TEST_BRANCH', 'TEST_REPO', 'TEST_BUILDTYPE', 'TEST_TYPE', 'TEST_OS', 'TEST_KERNEL', 'TEST_PROCESSORTYPE', 'TEST_MEMORY', 'TEST_CPUSPEED', 'TEST_TIMEZONE', 'TEST_OPTIONS');
|
||||
@universefields = ('TEST_BRANCH', 'TEST_REPO', 'TEST_BUILDTYPE', 'TEST_TYPE', 'TEST_OS', 'TEST_KERNEL', 'TEST_PROCESSORTYPE', 'TEST_MEMORY', 'TEST_CPUSPEED', 'TEST_TIMEZONE', 'TEST_OPTIONS');
|
||||
|
||||
@records = ();
|
||||
|
||||
@@ -200,8 +226,8 @@ BEGIN
|
||||
|
||||
my $record = {};
|
||||
|
||||
my ($test_os, $test_kernel, $test_processortype, $test_memory, $test_cpuspeed, $test_timezone, $test_branch, $test_repo, $test_buildtype, $test_type) = $_ =~
|
||||
/^TEST_OS=([^,]*), TEST_KERNEL=([^,]*), TEST_PROCESSORTYPE=([^,]*), TEST_MEMORY=([^,]*), TEST_CPUSPEED=([^,]*), TEST_TIMEZONE=([^,]*), TEST_BRANCH=([^,]*), TEST_REPO=([^,]*), TEST_BUILDTYPE=([^,]*), TEST_TYPE=([^,]*)/;
|
||||
my ($test_os, $test_kernel, $test_processortype, $test_memory, $test_cpuspeed, $test_timezone, $test_jsoptions, $test_branch, $test_repo, $test_buildtype, $test_type) = $_ =~
|
||||
/^TEST_OS=([^,]*), TEST_KERNEL=([^,]*), TEST_PROCESSORTYPE=([^,]*), TEST_MEMORY=([^,]*), TEST_CPUSPEED=([^,]*), TEST_TIMEZONE=([^,]*), TEST_OPTIONS=([^,]*), TEST_BRANCH=([^,]*), TEST_REPO=([^,]*), TEST_BUILDTYPE=([^,]*), TEST_TYPE=([^,]*)/;
|
||||
|
||||
$record->{TEST_ID} = 'dummy';
|
||||
$record->{TEST_RESULT} = 'dummy';
|
||||
@@ -218,6 +244,7 @@ BEGIN
|
||||
$record->{TEST_MEMORY} = $test_memory;
|
||||
$record->{TEST_CPUSPEED} = $test_cpuspeed;
|
||||
$record->{TEST_TIMEZONE} = $test_timezone;
|
||||
$record->{TEST_OPTIONS} = $test_jsoptions;
|
||||
|
||||
dbg("BEGIN: testrun: " . recordtostring($record));
|
||||
|
||||
|
||||
@@ -76,7 +76,7 @@ usage: bisect.sh -p product -b branch -e extra\\
|
||||
variable description
|
||||
=============== ============================================================
|
||||
-p bisect_product one of js, firefox
|
||||
-b bisect_branches one of branches 1.8.0, 1.8.1, 1.9.0, 1.9.1
|
||||
-b bisect_branches one of branches 1.8.0, 1.8.1, 1.9.0, 1.9.1, 1.9.2
|
||||
-e bisect_extra optional. extra qualifier to pick build tree and mozconfig.
|
||||
-T bisect_buildtype one of build types opt debug
|
||||
-t bisect_test Test to be bisected.
|
||||
@@ -88,9 +88,9 @@ usage: bisect.sh -p product -b branch -e extra\\
|
||||
bisect_string can contain any extended regular expressions
|
||||
supported by egrep.
|
||||
-G bisect_good For branches 1.8.0, 1.8.1, 1.9.0, date test passed
|
||||
For branch 1.9.1, revision test passed
|
||||
For branch 1.9.1 and later, revision test passed
|
||||
-B bisect_bad For branches, 1.8.0, 1.8.1, 1.9.0 date test failed
|
||||
For branch 1.9.1, revision test failed.
|
||||
For branch 1.9.1 and later, revision test failed.
|
||||
|
||||
If the good revision (test passed) occurred prior to the bad revision
|
||||
(test failed), the script will search for the first bad revision which
|
||||
@@ -267,7 +267,7 @@ EOF
|
||||
while true; do
|
||||
|
||||
if (( $seconds_index_start+1 >= $seconds_index_stop )); then
|
||||
echo "*** date `date -r ${seconds_array[$seconds_index_stop]}` found ***"
|
||||
echo "*** date `perl -e 'print scalar localtime $ARGV[0];' ${seconds_array[$seconds_index_stop]}` found ***"
|
||||
break;
|
||||
fi
|
||||
|
||||
@@ -279,7 +279,7 @@ EOF
|
||||
let seconds_index_middle="($seconds_index_start + $seconds_index_stop)/2"
|
||||
let seconds_middle="${seconds_array[$seconds_index_middle]}"
|
||||
|
||||
bisect_middle="`date -r $seconds_middle`"
|
||||
bisect_middle="`perl -e 'print scalar localtime $ARGV[0];' $seconds_middle`"
|
||||
export MOZ_CO_DATE="$bisect_middle"
|
||||
echo "testing $MOZ_CO_DATE"
|
||||
|
||||
@@ -314,7 +314,7 @@ EOF
|
||||
done
|
||||
;;
|
||||
|
||||
1.9.1)
|
||||
1.9.1|1.9.2)
|
||||
#
|
||||
# binary search using mercurial
|
||||
#
|
||||
|
||||
@@ -610,106 +610,84 @@ function jsTestDriverBrowserInit()
|
||||
return;
|
||||
}
|
||||
|
||||
var re = /test=([^;]+);language=(language|type);([a-zA-Z0-9.=;\/]+)/;
|
||||
var matches = re.exec(document.location.search);
|
||||
|
||||
// testpath http://machine/path-to-suite/sub-suite/test.js
|
||||
var testpath = matches[1];
|
||||
var attribute = matches[2];
|
||||
var value = matches[3];
|
||||
|
||||
if (testpath)
|
||||
var properties = {};
|
||||
var fields = document.location.search.slice(1).split(';');
|
||||
for (var ifield = 0; ifield < fields.length; ifield++)
|
||||
{
|
||||
testpath = decodeURIComponent(testpath);
|
||||
gTestPath = testpath;
|
||||
var propertycaptures = /^([^=]+)=(.*)$/.exec(fields[ifield]);
|
||||
if (!propertycaptures)
|
||||
{
|
||||
properties[fields[ifield]] = true;
|
||||
}
|
||||
else
|
||||
{
|
||||
properties[propertycaptures[1]] = decodeURIComponent(propertycaptures[2]);
|
||||
if (propertycaptures[1] == 'language')
|
||||
{
|
||||
// language=(type|language);mimetype
|
||||
properties.mimetype = fields[ifield+1];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
var ise4x = /e4x\//.test(testpath);
|
||||
|
||||
var gczealmatches = /gczeal=([0-9]*)/.exec(document.location.search);
|
||||
|
||||
if (gczealmatches)
|
||||
if (properties.language != 'type')
|
||||
{
|
||||
var zeal = Number(gczealmatches[1]);
|
||||
gczeal(zeal);
|
||||
try
|
||||
{
|
||||
properties.version = /javascript([.0-9]+)/.exec(properties.mimetype)[1];
|
||||
}
|
||||
catch(ex)
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* since the default setting of jit changed from false to true
|
||||
* in http://hg.mozilla.org/tracemonkey/rev/685e00e68be9
|
||||
* bisections which depend upon jit settings can be thrown off.
|
||||
* default jit(false) to make bisections depending upon jit settings
|
||||
* consistent over time. This is not needed in shell tests as the default
|
||||
* jit setting has not changed there.
|
||||
*/
|
||||
|
||||
var jitmatches = /;jit/.exec(document.location.search);
|
||||
|
||||
if (jitmatches)
|
||||
{
|
||||
jit(true);
|
||||
}
|
||||
else
|
||||
{
|
||||
jit(false);
|
||||
}
|
||||
|
||||
var versionmatches;
|
||||
|
||||
if (attribute == 'type')
|
||||
{
|
||||
versionmatches = /version=([.0-9]+)/.exec(value);
|
||||
}
|
||||
else
|
||||
{
|
||||
versionmatches = /javascript([.0-9]+)/.exec(value);
|
||||
}
|
||||
|
||||
if (versionmatches)
|
||||
{
|
||||
gVersion = 10*parseInt(versionmatches[1].replace(/\./g, ''));
|
||||
}
|
||||
else if (navigator.userAgent.indexOf('Gecko/') != -1)
|
||||
if (!properties.version && navigator.userAgent.indexOf('Gecko/') != -1)
|
||||
{
|
||||
// If the version is not specified, and the browser is Gecko,
|
||||
// adjust the version to match the suite version.
|
||||
if (attribute == 'type')
|
||||
if (properties.test.match(/^js1_6/))
|
||||
{
|
||||
value = 'text/javascript;version=';
|
||||
properties.version = '1.6';
|
||||
}
|
||||
else if (properties.test.match(/^js1_7/))
|
||||
{
|
||||
properties.version = '1.7';
|
||||
}
|
||||
else if (properties.test.match(/^js1_8/))
|
||||
{
|
||||
properties.version = '1.8';
|
||||
}
|
||||
else if (properties.test.match(/^js1_8_1/))
|
||||
{
|
||||
properties.version = '1.8';
|
||||
}
|
||||
else
|
||||
{
|
||||
value = 'javascript';
|
||||
}
|
||||
|
||||
if (testpath.match(/^js1_6/))
|
||||
{
|
||||
gVersion = 160;
|
||||
value += '1.6';
|
||||
}
|
||||
else if (testpath.match(/^js1_7/))
|
||||
{
|
||||
gVersion = 170;
|
||||
value += '1.7';
|
||||
}
|
||||
else if (testpath.match(/^js1_8/))
|
||||
{
|
||||
gVersion = 180;
|
||||
value += '1.8';
|
||||
}
|
||||
else if (testpath.match(/^js1_8_1/))
|
||||
{
|
||||
gVersion = 180;
|
||||
value += '1.8';
|
||||
}
|
||||
else
|
||||
{
|
||||
gVersion = 150;
|
||||
value += '1.5';
|
||||
properties.version = '1.5';
|
||||
}
|
||||
}
|
||||
|
||||
var testpathparts = testpath.split(/\//);
|
||||
gTestPath = properties.test;
|
||||
|
||||
gVersion = 10*parseInt(properties.version.replace(/\./g, ''));
|
||||
|
||||
if (properties.gczeal)
|
||||
{
|
||||
gczeal(Number(properties.gczeal));
|
||||
}
|
||||
|
||||
/*
|
||||
* since the default setting of jit changed from false to true
|
||||
* in http://hg.mozilla.org/tracemonkey/rev/685e00e68be9
|
||||
* bisections which depend upon jit settings can be thrown off.
|
||||
* default jit(false) to make bisections depending upon jit settings
|
||||
* consistent over time. This is not needed in shell tests as the default
|
||||
* jit setting has not changed there.
|
||||
*/
|
||||
|
||||
jit(properties.jit);
|
||||
|
||||
var testpathparts = properties.test.split(/\//);
|
||||
|
||||
if (testpathparts.length < 3)
|
||||
{
|
||||
@@ -720,52 +698,55 @@ function jsTestDriverBrowserInit()
|
||||
var subsuite = testpathparts[testpathparts.length - 2];
|
||||
var test = testpathparts[testpathparts.length - 1];
|
||||
|
||||
outputscripttag(suitepath + '/shell.js', attribute, value,
|
||||
ise4x);
|
||||
outputscripttag(suitepath + '/browser.js', attribute, value,
|
||||
ise4x);
|
||||
outputscripttag(suitepath + '/' + subsuite + '/shell.js', attribute, value,
|
||||
ise4x);
|
||||
outputscripttag(suitepath + '/' + subsuite + '/browser.js', attribute, value,
|
||||
ise4x);
|
||||
outputscripttag(suitepath + '/' + subsuite + '/' + test, attribute, value,
|
||||
ise4x);
|
||||
outputscripttag(suitepath + '/shell.js', properties);
|
||||
outputscripttag(suitepath + '/browser.js', properties);
|
||||
outputscripttag(suitepath + '/' + subsuite + '/shell.js', properties);
|
||||
outputscripttag(suitepath + '/' + subsuite + '/browser.js', properties);
|
||||
outputscripttag(suitepath + '/' + subsuite + '/' + test, properties,
|
||||
properties.e4x || /e4x\//.test(properties.test));
|
||||
|
||||
document.write('<title>' + suitepath + '/' + subsuite + '/' + test +
|
||||
'<\/title>');
|
||||
document.write('<title>' + suitepath + '/' + subsuite + '/' + test + '<\/title>');
|
||||
|
||||
outputscripttag('js-test-driver-end.js', attribute, value,
|
||||
false);
|
||||
outputscripttag('js-test-driver-end.js', properties);
|
||||
return;
|
||||
}
|
||||
|
||||
function outputscripttag(src, attribute, value, ise4x)
|
||||
function outputscripttag(src, properties, e4x)
|
||||
{
|
||||
if (!src)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
var s = '<script src="' + src + '" ';
|
||||
|
||||
if (ise4x)
|
||||
if (e4x)
|
||||
{
|
||||
if (attribute == 'type')
|
||||
{
|
||||
value += ';e4x=1 ';
|
||||
}
|
||||
else
|
||||
{
|
||||
s += ' type="text/javascript';
|
||||
if (gVersion != 150)
|
||||
{
|
||||
s += ';version=' + gVersion/100;
|
||||
}
|
||||
s += ';e4x=1" ';
|
||||
}
|
||||
// e4x requires type=mimetype;e4x=1
|
||||
properties.language = 'type';
|
||||
}
|
||||
|
||||
s += attribute + '="' + value + '"><\/script>';
|
||||
var s = '<script src="' + src + '" ';
|
||||
|
||||
if (properties.language != 'type')
|
||||
{
|
||||
s += 'language="javascript';
|
||||
if (properties.version)
|
||||
{
|
||||
s += properties.version;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
s += 'type="' + properties.mimetype;
|
||||
if (properties.version)
|
||||
{
|
||||
s += ';version=' + properties.version;
|
||||
}
|
||||
if (e4x)
|
||||
{
|
||||
s += ';e4x=1';
|
||||
}
|
||||
}
|
||||
s += '"><\/script>';
|
||||
|
||||
document.write(s);
|
||||
}
|
||||
|
||||
@@ -72,7 +72,7 @@ Outputs to stdout the universe data for this machine.
|
||||
variable description
|
||||
=============== ============================================================
|
||||
-p products required. one or more of firefox, thunderbird, fennec, js
|
||||
-b branches required. one or more of 1.8.0, 1.8.1, 1.9.0, 1.9.1
|
||||
-b branches required. one or more of 1.8.0, 1.8.1, 1.9.0, 1.9.1, 1.9.2
|
||||
-R repositories required. one or more of CVS, mozilla-central, ...
|
||||
-T buildtype required. one or more of opt debug
|
||||
|
||||
@@ -114,11 +114,11 @@ fi
|
||||
for branch in $branches; do
|
||||
for repo in $repos; do
|
||||
|
||||
if [[ "$branch" == "1.9.1" && $repo == "CVS" ]]; then
|
||||
if [[ ("$branch" != "1.8.0" && "$branch" != "1.8.1" && "$branch" != "1.9.0") && $repo == "CVS" ]]; then
|
||||
continue;
|
||||
fi
|
||||
|
||||
if [[ "$branch" != "1.9.1" && $repo != "CVS" ]]; then
|
||||
if [[ ("$branch" == "1.8.0" || "$branch" == "1.8.1" || "$branch" == "1.9.0") && $repo != "CVS" ]]; then
|
||||
continue
|
||||
fi
|
||||
|
||||
|
||||
64
mozilla/js/tests/e4x/Regress/regress-458679-01.js
Normal file
64
mozilla/js/tests/e4x/Regress/regress-458679-01.js
Normal file
@@ -0,0 +1,64 @@
|
||||
/* -*- Mode: java; tab-width:8; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
||||
|
||||
/* ***** 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 JavaScript Engine testing utilities.
|
||||
*
|
||||
* The Initial Developer of the Original Code is
|
||||
* Mozilla Foundation.
|
||||
* Portions created by the Initial Developer are Copyright (C) 2008
|
||||
* the Initial Developer. All Rights Reserved.
|
||||
*
|
||||
* Contributor(s): Igor Bukanov
|
||||
*
|
||||
* 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 ***** */
|
||||
|
||||
gTestfile = 'regress-458679-01.js';
|
||||
|
||||
var summary = 'GetXMLEntity should not assume FastAppendChar is infallible';
|
||||
var BUGNUMBER = 458679;
|
||||
var actual = '';
|
||||
var expect = '';
|
||||
|
||||
printBugNumber(BUGNUMBER);
|
||||
START(summary);
|
||||
|
||||
try
|
||||
{
|
||||
var x = "<";
|
||||
|
||||
while (x.length < 12000000)
|
||||
x += x;
|
||||
|
||||
<e4x>{x}</e4x>;
|
||||
}
|
||||
catch(ex)
|
||||
{
|
||||
}
|
||||
|
||||
TEST(1, expect, actual);
|
||||
|
||||
END();
|
||||
76
mozilla/js/tests/e4x/Regress/regress-458679-02.js
Normal file
76
mozilla/js/tests/e4x/Regress/regress-458679-02.js
Normal file
@@ -0,0 +1,76 @@
|
||||
/* -*- Mode: java; tab-width:8; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
||||
|
||||
/* ***** 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 JavaScript Engine testing utilities.
|
||||
*
|
||||
* The Initial Developer of the Original Code is
|
||||
* Mozilla Foundation.
|
||||
* Portions created by the Initial Developer are Copyright (C) 2008
|
||||
* the Initial Developer. All Rights Reserved.
|
||||
*
|
||||
* Contributor(s): Jesse Ruderman
|
||||
*
|
||||
* 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 ***** */
|
||||
|
||||
gTestfile = 'regress-458679-02.js';
|
||||
|
||||
var summary = 'GetXMLEntity should not assume FastAppendChar is infallible';
|
||||
var BUGNUMBER = 458679;
|
||||
var actual = '';
|
||||
var expect = '';
|
||||
|
||||
printBugNumber(BUGNUMBER);
|
||||
START(summary);
|
||||
|
||||
function stringOfLength(n)
|
||||
{
|
||||
if (n == 0) {
|
||||
return "";
|
||||
} else if (n == 1) {
|
||||
return "<";
|
||||
} else {
|
||||
var r = n % 2;
|
||||
var d = (n - r) / 2;
|
||||
var y = stringOfLength(d);
|
||||
return y + y + stringOfLength(r);
|
||||
}
|
||||
}
|
||||
|
||||
try
|
||||
{
|
||||
|
||||
void stringOfLength(4435455);
|
||||
x = stringOfLength(14435455);
|
||||
<xxx>{x}</xxx>;
|
||||
}
|
||||
catch(ex)
|
||||
{
|
||||
}
|
||||
|
||||
TEST(1, expect, actual);
|
||||
|
||||
END();
|
||||
@@ -48,5 +48,5 @@
|
||||
export LC_ALL=C # handle all character sets
|
||||
|
||||
(for f in $@; do
|
||||
grep -h -m 1 TEST_ID $f | tr -dc '[\040-\177\n]' | sed 's|^TEST_ID=[^,]*, \(TEST_BRANCH=[^,]*, TEST_REPO=[^,]*, TEST_BUILDTYPE=[^,]*, TEST_TYPE=[^,]*\), \(TEST_OS=[^,]*, TEST_KERNEL=[^,]*, TEST_PROCESSORTYPE=[^,]*, TEST_MEMORY=[^,]*, TEST_CPUSPEED=[^,]*, TEST_TIMEZONE=[^,]*\),.*|\2, \1|'
|
||||
grep -h -m 1 TEST_ID $f | tr -dc '[\040-\177\n]' | sed 's|^TEST_ID=[^,]*, \(TEST_BRANCH=[^,]*, TEST_REPO=[^,]*, TEST_BUILDTYPE=[^,]*, TEST_TYPE=[^,]*\), \(TEST_OS=[^,]*, TEST_KERNEL=[^,]*, TEST_PROCESSORTYPE=[^,]*, TEST_MEMORY=[^,]*, TEST_CPUSPEED=[^,]*, TEST_TIMEZONE=[^,]*, TEST_OPTIONS=[^,]*\),.*|\2, \1|'
|
||||
done) | sort -u
|
||||
|
||||
52
mozilla/js/tests/js1_5/Regress/regress-428366.js
Normal file
52
mozilla/js/tests/js1_5/Regress/regress-428366.js
Normal file
@@ -0,0 +1,52 @@
|
||||
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
||||
/* ***** 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 JavaScript Engine testing utilities.
|
||||
*
|
||||
* The Initial Developer of the Original Code is
|
||||
* Mozilla Foundation.
|
||||
* Portions created by the Initial Developer are Copyright (C) 2008
|
||||
* the Initial Developer. All Rights Reserved.
|
||||
*
|
||||
* Contributor(s): Blake Kaplan
|
||||
*
|
||||
* 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 ***** */
|
||||
|
||||
var gTestfile = 'regress-428366.js';
|
||||
//-----------------------------------------------------------------------------
|
||||
var BUGNUMBER = 428366;
|
||||
var summary = 'Do not assert deleting eval 16 times';
|
||||
var actual = '';
|
||||
var expect = '';
|
||||
|
||||
printBugNumber(BUGNUMBER);
|
||||
printStatus (summary);
|
||||
|
||||
this.__proto__.x = eval;
|
||||
for (i = 0; i < 16; ++i) delete eval;
|
||||
(function w() { x = 1; })();
|
||||
|
||||
reportCompare(expect, actual, summary);
|
||||
68
mozilla/js/tests/js1_5/Regress/regress-465133.js
Normal file
68
mozilla/js/tests/js1_5/Regress/regress-465133.js
Normal file
@@ -0,0 +1,68 @@
|
||||
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
||||
/* ***** 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 JavaScript Engine testing utilities.
|
||||
*
|
||||
* The Initial Developer of the Original Code is
|
||||
* Mozilla Foundation.
|
||||
* Portions created by the Initial Developer are Copyright (C) 2008
|
||||
* the Initial Developer. All Rights Reserved.
|
||||
*
|
||||
* Contributor(s): Jesse Ruderman
|
||||
*
|
||||
* 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 ***** */
|
||||
|
||||
var gTestfile = 'regress-465133.js';
|
||||
//-----------------------------------------------------------------------------
|
||||
var BUGNUMBER = 465133;
|
||||
var summary = '{} < {}';
|
||||
var actual = '';
|
||||
var expect = '';
|
||||
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
test();
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
function test()
|
||||
{
|
||||
enterFunc ('test');
|
||||
printBugNumber(BUGNUMBER);
|
||||
printStatus (summary);
|
||||
|
||||
expect = 'false,false,false,false,false,';
|
||||
actual = '';
|
||||
|
||||
jit(true);
|
||||
|
||||
for (var i=0;i<5;++i) actual += ({} < {}) + ',';
|
||||
|
||||
jit(false);
|
||||
|
||||
reportCompare(expect, actual, summary);
|
||||
|
||||
exitFunc ('test');
|
||||
}
|
||||
74
mozilla/js/tests/js1_5/Regress/regress-465366.js
Normal file
74
mozilla/js/tests/js1_5/Regress/regress-465366.js
Normal file
@@ -0,0 +1,74 @@
|
||||
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
||||
/* ***** 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 JavaScript Engine testing utilities.
|
||||
*
|
||||
* The Initial Developer of the Original Code is
|
||||
* Mozilla Foundation.
|
||||
* Portions created by the Initial Developer are Copyright (C) 2008
|
||||
* the Initial Developer. All Rights Reserved.
|
||||
*
|
||||
* Contributor(s):
|
||||
*
|
||||
* 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 ***** */
|
||||
|
||||
var gTestfile = 'regress-465366.js';
|
||||
//-----------------------------------------------------------------------------
|
||||
var BUGNUMBER = 465366;
|
||||
var summary = 'TM: JIT: error with multiplicative loop';
|
||||
var actual = '';
|
||||
var expect = '';
|
||||
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
test();
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
function test()
|
||||
{
|
||||
enterFunc ('test');
|
||||
printBugNumber(BUGNUMBER);
|
||||
printStatus (summary);
|
||||
|
||||
jit(true);
|
||||
|
||||
function f()
|
||||
{
|
||||
var k = 1;
|
||||
for (var n = 0; n < 2; n++) {
|
||||
k = (k * 10);
|
||||
}
|
||||
return k;
|
||||
}
|
||||
f();
|
||||
print(f());
|
||||
|
||||
jit(false);
|
||||
|
||||
reportCompare(expect, actual, summary);
|
||||
|
||||
exitFunc ('test');
|
||||
}
|
||||
61
mozilla/js/tests/js1_5/decompilation/regress-443071-01.js
Normal file
61
mozilla/js/tests/js1_5/decompilation/regress-443071-01.js
Normal file
@@ -0,0 +1,61 @@
|
||||
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
||||
/* ***** 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 JavaScript Engine testing utilities.
|
||||
*
|
||||
* The Initial Developer of the Original Code is
|
||||
* Mozilla Foundation.
|
||||
* Portions created by the Initial Developer are Copyright (C) 2008
|
||||
* the Initial Developer. All Rights Reserved.
|
||||
*
|
||||
* Contributor(s): Jesse Ruderman
|
||||
*
|
||||
* 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 ***** */
|
||||
|
||||
var gTestfile = 'regress-443071-01.js';
|
||||
//-----------------------------------------------------------------------------
|
||||
var BUGNUMBER = 443071;
|
||||
var summary = 'Do not assert: top != 0 with for (;;[]=[])';
|
||||
var actual = '';
|
||||
var expect = '';
|
||||
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
test();
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
function test()
|
||||
{
|
||||
enterFunc ('test');
|
||||
printBugNumber(BUGNUMBER);
|
||||
printStatus (summary);
|
||||
|
||||
print(function() { for (;;[]=[]) { } });
|
||||
|
||||
reportCompare(expect, actual, summary);
|
||||
|
||||
exitFunc ('test');
|
||||
}
|
||||
57
mozilla/js/tests/js1_5/extensions/regress-454142.js
Normal file
57
mozilla/js/tests/js1_5/extensions/regress-454142.js
Normal file
@@ -0,0 +1,57 @@
|
||||
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
||||
/* ***** 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 JavaScript Engine testing utilities.
|
||||
*
|
||||
* The Initial Developer of the Original Code is
|
||||
* Mozilla Foundation.
|
||||
* Portions created by the Initial Developer are Copyright (C) 2008
|
||||
* the Initial Developer. All Rights Reserved.
|
||||
*
|
||||
* Contributor(s): Gary Kwong
|
||||
*
|
||||
* 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 ***** */
|
||||
|
||||
var gTestfile = 'regress-454142.js';
|
||||
//-----------------------------------------------------------------------------
|
||||
var BUGNUMBER = 454142;
|
||||
var summary = 'Do not crash with gczeal, setter, watch';
|
||||
var actual = '';
|
||||
var expect = '';
|
||||
|
||||
printBugNumber(BUGNUMBER);
|
||||
printStatus (summary);
|
||||
|
||||
this.watch("x", function(){});
|
||||
delete x;
|
||||
if (typeof gczeal == 'function')
|
||||
{
|
||||
gczeal(2);
|
||||
}
|
||||
this.__defineSetter__("x", function(){});
|
||||
|
||||
|
||||
reportCompare(expect, actual, summary);
|
||||
63
mozilla/js/tests/js1_7/decompilation/regress-371802.js
Normal file
63
mozilla/js/tests/js1_7/decompilation/regress-371802.js
Normal file
@@ -0,0 +1,63 @@
|
||||
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
||||
/* ***** 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 JavaScript Engine testing utilities.
|
||||
*
|
||||
* The Initial Developer of the Original Code is
|
||||
* Mozilla Foundation.
|
||||
* Portions created by the Initial Developer are Copyright (C) 2008
|
||||
* the Initial Developer. All Rights Reserved.
|
||||
*
|
||||
* Contributor(s): Brendan Eich
|
||||
*
|
||||
* 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 ***** */
|
||||
|
||||
var gTestfile = 'regress-371802.js';
|
||||
//-----------------------------------------------------------------------------
|
||||
var BUGNUMBER = 371802;
|
||||
var summary = 'Do not assert with group assignment';
|
||||
var actual = '';
|
||||
var expect = '';
|
||||
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
test();
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
function test()
|
||||
{
|
||||
enterFunc ('test');
|
||||
printBugNumber(BUGNUMBER);
|
||||
printStatus (summary);
|
||||
|
||||
var f = (function (a,b,n){for(var [i,j]=[a,b];i<n;[i,j]=[a,b])print(i)});
|
||||
expect = 'function (a,b,n){for(var [i,j]=[a,b];(i<n);[i,j]=[a,b]){print(i);}}';
|
||||
actual = f + '';
|
||||
|
||||
compareSource(expect, actual, summary);
|
||||
|
||||
exitFunc ('test');
|
||||
}
|
||||
85
mozilla/js/tests/js1_7/extensions/regress-458679.js
Normal file
85
mozilla/js/tests/js1_7/extensions/regress-458679.js
Normal file
@@ -0,0 +1,85 @@
|
||||
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
||||
/* ***** 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 JavaScript Engine testing utilities.
|
||||
*
|
||||
* The Initial Developer of the Original Code is
|
||||
* Mozilla Foundation.
|
||||
* Portions created by the Initial Developer are Copyright (C) 2008
|
||||
* the Initial Developer. All Rights Reserved.
|
||||
*
|
||||
* Contributor(s): Gary Kwong
|
||||
*
|
||||
* 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 ***** */
|
||||
|
||||
var gTestfile = 'regress-458679.js';
|
||||
//-----------------------------------------------------------------------------
|
||||
var BUGNUMBER = 458679;
|
||||
var summary = 'Do not assert: nbytes != 0';
|
||||
var actual = '';
|
||||
var expect = '';
|
||||
|
||||
printBugNumber(BUGNUMBER);
|
||||
printStatus (summary);
|
||||
|
||||
function f()
|
||||
{
|
||||
for (var i = 1; i < dps.length; ++i) {
|
||||
var a = "";
|
||||
var b = "";
|
||||
var c = "";
|
||||
}
|
||||
}
|
||||
|
||||
function stringOfLength(n)
|
||||
{
|
||||
if (n == 0) {
|
||||
return "";
|
||||
} else if (n == 1) {
|
||||
return "\"";
|
||||
} else {
|
||||
var r = n % 2;
|
||||
var d = (n - r) / 2;
|
||||
var y = stringOfLength(d);
|
||||
return y + y + stringOfLength(r);
|
||||
}
|
||||
}
|
||||
|
||||
try
|
||||
{
|
||||
this.__defineGetter__('x', this.toSource);
|
||||
while (x.length < 12000000) {
|
||||
let q = x;
|
||||
s = q + q;
|
||||
}
|
||||
print(x.length);
|
||||
<e4x>{x}</e4x>;
|
||||
}
|
||||
catch(ex)
|
||||
{
|
||||
}
|
||||
|
||||
reportCompare(expect, actual, summary);
|
||||
108
mozilla/js/tests/js1_8/extensions/regress-417131.js
Normal file
108
mozilla/js/tests/js1_8/extensions/regress-417131.js
Normal file
@@ -0,0 +1,108 @@
|
||||
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
||||
/* ***** 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 JavaScript Engine testing utilities.
|
||||
*
|
||||
* The Initial Developer of the Original Code is
|
||||
* Mozilla Foundation.
|
||||
* Portions created by the Initial Developer are Copyright (C) 2008
|
||||
* the Initial Developer. All Rights Reserved.
|
||||
*
|
||||
* Contributor(s): Igor Bukanov
|
||||
*
|
||||
* 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 ***** */
|
||||
|
||||
var gTestfile = 'regress-417131.js';
|
||||
//-----------------------------------------------------------------------------
|
||||
var BUGNUMBER = 417131;
|
||||
var summary = 'stress test for cache';
|
||||
var actual = '';
|
||||
var expect = '';
|
||||
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
test();
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
function test()
|
||||
{
|
||||
enterFunc ('test');
|
||||
printBugNumber(BUGNUMBER);
|
||||
printStatus (summary);
|
||||
|
||||
function f(N)
|
||||
{
|
||||
for (var i = 0; i != N; ++i) {
|
||||
var obj0 = {}, obj1 = {}, obj2 = {};
|
||||
obj1['a'+i] = 0;
|
||||
obj2['b'+i] = 0;
|
||||
obj2['b'+(i+1)] = 1;
|
||||
for (var repeat = 0;repeat != 2; ++repeat) {
|
||||
var count = 0;
|
||||
for (var j in obj1) {
|
||||
if (j !== 'a'+i)
|
||||
throw "Bad:"+j;
|
||||
for (var k in obj2) {
|
||||
if (i == Math.floor(N/3) || i == Math.floor(2*N/3))
|
||||
gc();
|
||||
var expected;
|
||||
switch (count) {
|
||||
case 0: expected='b'+i; break;
|
||||
case 1: expected='b'+(i+1); break;
|
||||
default:
|
||||
throw "Bad count: "+count;
|
||||
}
|
||||
if (expected != k)
|
||||
throw "Bad k, expected="+expected+", actual="+k;
|
||||
for (var l in obj0)
|
||||
++count;
|
||||
++count;
|
||||
}
|
||||
}
|
||||
if (count !== 2)
|
||||
throw "Bad count: "+count;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
var array = [function() { f(10); },
|
||||
function() { f(50); },
|
||||
function() { f(200); },
|
||||
function() { f(400); }
|
||||
];
|
||||
|
||||
if (typeof scatter == "function") {
|
||||
scatter(array);
|
||||
} else {
|
||||
for (var i = 0; i != array.length; ++i)
|
||||
array[i]();
|
||||
}
|
||||
|
||||
|
||||
reportCompare(expect, actual, summary);
|
||||
|
||||
exitFunc ('test');
|
||||
}
|
||||
@@ -58,22 +58,22 @@ function test()
|
||||
f = function() { z((yield 3)) }
|
||||
expect = 'function() { z(yield 3); }';
|
||||
actual = f + '';
|
||||
compareSource(expect, actual, summary);
|
||||
compareSource(expect, actual, summary + ': 1');
|
||||
|
||||
f = function f(){g((let(a=b)c,d),e)}
|
||||
expect = 'function f(){g((let(a=b)c,d),e);}';
|
||||
actual = f + '';
|
||||
compareSource(expect, actual, summary);
|
||||
compareSource(expect, actual, summary + ': 2');
|
||||
|
||||
f = function() { let(s=4){foo:"bar"} }
|
||||
expect = 'function() { let(s=4){foo:"bar";} }';
|
||||
actual = f + '';
|
||||
compareSource(expect, actual, summary);
|
||||
compareSource(expect, actual, summary + ': 3');
|
||||
|
||||
f = function() { (let(s=4){foo:"bar"}) }
|
||||
expect = 'function() { let(s=4)({foo:"bar"}); }';
|
||||
actual = f + '';
|
||||
compareSource(expect, actual, summary);
|
||||
compareSource(expect, actual, summary + ': 4');
|
||||
|
||||
exitFunc ('test');
|
||||
}
|
||||
|
||||
63
mozilla/js/tests/js1_8_1/decompilation/regress-371802.js
Normal file
63
mozilla/js/tests/js1_8_1/decompilation/regress-371802.js
Normal file
@@ -0,0 +1,63 @@
|
||||
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
||||
/* ***** 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 JavaScript Engine testing utilities.
|
||||
*
|
||||
* The Initial Developer of the Original Code is
|
||||
* Mozilla Foundation.
|
||||
* Portions created by the Initial Developer are Copyright (C) 2008
|
||||
* the Initial Developer. All Rights Reserved.
|
||||
*
|
||||
* Contributor(s): Brendan Eich
|
||||
*
|
||||
* 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 ***** */
|
||||
|
||||
var gTestfile = 'regress-371802.js';
|
||||
//-----------------------------------------------------------------------------
|
||||
var BUGNUMBER = 371802;
|
||||
var summary = 'Do not assert with group assignment';
|
||||
var actual = '';
|
||||
var expect = '';
|
||||
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
test();
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
function test()
|
||||
{
|
||||
enterFunc ('test');
|
||||
printBugNumber(BUGNUMBER);
|
||||
printStatus (summary);
|
||||
|
||||
var f = (function (a,b,n){for(var [i,j]=[a,b];i<n;[i,j]=[a,b])print(i)});
|
||||
expect = 'function (a,b,n){for(var [i,j]=[a,b];i<n;[i,j]=[a,b]){print(i);}}';
|
||||
actual = f + '';
|
||||
|
||||
compareSource(expect, actual, summary);
|
||||
|
||||
exitFunc ('test');
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -43,7 +43,6 @@
|
||||
# Branched 11/01/99
|
||||
|
||||
use strict;
|
||||
use Getopt::Mixed "nextOption";
|
||||
use File::Temp qw/ tempfile tempdir /;
|
||||
use POSIX qw(sys_wait_h);
|
||||
|
||||
@@ -84,9 +83,11 @@ my $options = "b=s bugurl>b c=s classpath>c e=s engine>e f=s file>f " .
|
||||
"h help>h i j=s javapath>j k confail>k K linefail>K R report>R l=s list>l " .
|
||||
"L=s neglist>L o=s opt>o p=s testpath>p s=s shellpath>s t trace>t " .
|
||||
"T=s timeout>T u=s lxrurl>u " .
|
||||
"x noexitmunge>x n:s narcissus>n " .
|
||||
"x noexitmunge>x n=s narcissus>n " .
|
||||
"Q noquitinthandler>Q";
|
||||
|
||||
my $last_option;
|
||||
|
||||
if ($os_type eq "MAC") {
|
||||
$opt_suite_path = `directory`;
|
||||
$opt_suite_path =~ s/[\n\r]//g;
|
||||
@@ -502,15 +503,47 @@ sub write_results {
|
||||
|
||||
}
|
||||
|
||||
sub next_option {
|
||||
my ($key, $val, $implied);
|
||||
|
||||
return if @ARGV == 0;
|
||||
|
||||
&dd ("ARGV is now: @ARGV\n");
|
||||
|
||||
$key = shift @ARGV;
|
||||
if ($key =~ s/^--?(.*)/$1/) {
|
||||
$implied = 0;
|
||||
} else {
|
||||
$implied = 1;
|
||||
$val = $key;
|
||||
$key = $last_option;
|
||||
}
|
||||
|
||||
if ($key =~ /\w+/ and $options =~ /\b$key>(\w+)/) {
|
||||
$key = $1;
|
||||
}
|
||||
|
||||
if ($options =~ /\b$key=s\b/) {
|
||||
if (!$implied) {
|
||||
die "option '$key' requires an argument" if @ARGV == 0;
|
||||
$val = shift @ARGV;
|
||||
}
|
||||
} elsif ($options =~ /(^|\s)$key(\s|$)/) {
|
||||
die "option '$key' doesn't take an argument" if $implied;
|
||||
$val = 1;
|
||||
} else {
|
||||
die "can't figure out option '$key'";
|
||||
}
|
||||
$last_option = $key;
|
||||
return ($key, $val);
|
||||
}
|
||||
|
||||
sub parse_args {
|
||||
my ($option, $value, $lastopt);
|
||||
|
||||
&dd ("checking command line options.");
|
||||
|
||||
Getopt::Mixed::init ($options);
|
||||
$Getopt::Mixed::order = $Getopt::Mixed::RETURN_IN_ORDER;
|
||||
|
||||
while (($option, $value) = nextOption()) {
|
||||
while (($option, $value) = next_option()) {
|
||||
|
||||
if ($option eq "b") {
|
||||
&dd ("opt: setting bugurl to '$value'.");
|
||||
@@ -625,8 +658,6 @@ sub parse_args {
|
||||
|
||||
}
|
||||
|
||||
Getopt::Mixed::cleanup();
|
||||
|
||||
if ($#opt_engine_list == -1) {
|
||||
die "You must select a shell to test in.\n";
|
||||
}
|
||||
|
||||
@@ -50,7 +50,7 @@ sub unescape_pattern;
|
||||
|
||||
# option arguments
|
||||
|
||||
my $option_desc = "b=s branch>b T=s buildtype>T R=s repo>R t=s testtype>t o=s os>o K=s kernel>K A=s arch>A M=s memory>M S=s speed>S z=s timezone>z l=s rawlogfile>l f=s failurelogfile>f r=s patterns>r O=s outputprefix>O D debug>D";
|
||||
my $option_desc = "b=s branch>b T=s buildtype>T R=s repo>R t=s testtype>t o=s os>o K=s kernel>K A=s arch>A M=s memory>M S=s speed>S z=s timezone>z J=s jsoptions>J l=s rawlogfile>l f=s failurelogfile>f r=s patterns>r O=s outputprefix>O D debug>D";
|
||||
|
||||
my $testid;
|
||||
my $branch;
|
||||
@@ -62,6 +62,7 @@ my $failurelogfile;
|
||||
my $os;
|
||||
my $patterns;
|
||||
my $timezone;
|
||||
my $jsoptions;
|
||||
my $outputprefix;
|
||||
my $arch;
|
||||
my $kernel;
|
||||
@@ -83,6 +84,8 @@ my $knownfailuretesttypepattern;
|
||||
my $failuretesttypepattern;
|
||||
my $knownfailuretimezonepattern;
|
||||
my $failuretimezonepattern;
|
||||
my $knownfailurejsoptionspattern;
|
||||
my $failurejsoptionspattern;
|
||||
my $knownfailurearchpattern;
|
||||
my $failurearchpattern;
|
||||
my $knownfailurekernelpattern;
|
||||
@@ -154,7 +157,7 @@ foreach $includedfile ( @includedfiles ) {
|
||||
}
|
||||
|
||||
debug "loading patterns $patterns";
|
||||
debug "pattern filter: ^TEST_ID=[^,]*, TEST_BRANCH=$knownfailurebranchpattern, TEST_REPO=$knownfailurerepopattern, TEST_BUILDTYPE=$knownfailurebuildtypepattern, TEST_TYPE=$knownfailuretesttypepattern, TEST_OS=$knownfailureospattern, TEST_KERNEL=$knownfailurekernelpattern, TEST_PROCESSORTYPE=$knownfailurearchpattern, TEST_MEMORY=$knownfailurememorypattern, TEST_CPUSPEED=$knownfailurecpuspeedpattern, TEST_TIMEZONE=$knownfailuretimezonepattern,";
|
||||
debug "pattern filter: ^TEST_ID=[^,]*, TEST_BRANCH=$knownfailurebranchpattern, TEST_REPO=$knownfailurerepopattern, TEST_BUILDTYPE=$knownfailurebuildtypepattern, TEST_TYPE=$knownfailuretesttypepattern, TEST_OS=$knownfailureospattern, TEST_KERNEL=$knownfailurekernelpattern, TEST_PROCESSORTYPE=$knownfailurearchpattern, TEST_MEMORY=$knownfailurememorypattern, TEST_CPUSPEED=$knownfailurecpuspeedpattern, TEST_TIMEZONE=$knownfailuretimezonepattern, TEST_OPTIONS=$knownfailurejsoptionspattern,";
|
||||
|
||||
open PATTERNS, "<$patterns" or die "Unable to open known failure patterns file $patterns: $!\n";
|
||||
while (<PATTERNS>) {
|
||||
@@ -168,7 +171,7 @@ while (<PATTERNS>) {
|
||||
{
|
||||
debug "test $testid was not included during this run";
|
||||
}
|
||||
elsif ($_ =~ /^TEST_ID=[^,]*, TEST_BRANCH=$knownfailurebranchpattern, TEST_REPO=$knownfailurerepopattern, TEST_BUILDTYPE=$knownfailurebuildtypepattern, TEST_TYPE=$knownfailuretesttypepattern, TEST_OS=$knownfailureospattern, TEST_KERNEL=$knownfailurekernelpattern, TEST_PROCESSORTYPE=$knownfailurearchpattern, TEST_MEMORY=$knownfailurememorypattern, TEST_CPUSPEED=$knownfailurecpuspeedpattern, TEST_TIMEZONE=$knownfailuretimezonepattern,/) {
|
||||
elsif ($_ =~ /^TEST_ID=[^,]*, TEST_BRANCH=$knownfailurebranchpattern, TEST_REPO=$knownfailurerepopattern, TEST_BUILDTYPE=$knownfailurebuildtypepattern, TEST_TYPE=$knownfailuretesttypepattern, TEST_OS=$knownfailureospattern, TEST_KERNEL=$knownfailurekernelpattern, TEST_PROCESSORTYPE=$knownfailurearchpattern, TEST_MEMORY=$knownfailurememorypattern, TEST_CPUSPEED=$knownfailurecpuspeedpattern, TEST_TIMEZONE=$knownfailuretimezonepattern, TEST_OPTIONS=$knownfailurejsoptionspattern,/) {
|
||||
debug "adding pattern : $_";
|
||||
push @patterns, (escape_pattern($_));
|
||||
}
|
||||
@@ -181,7 +184,7 @@ close PATTERNS;
|
||||
|
||||
# create a working copy of the current failures which match the users selection
|
||||
|
||||
debug "failure filter: ^TEST_ID=[^,]*, TEST_BRANCH=$failurebranchpattern, TEST_REPO=$failurerepopattern, TEST_BUILDTYPE=$failurebuildtypepattern, TEST_TYPE=$failuretesttypepattern, TEST_OS=$failureospattern, TEST_KERNEL=$failurekernelpattern, TEST_PROCESSORTYPE=$failurearchpattern, TEST_MEMORY=$failurememorypattern, TEST_CPUSPEED=$failurecpuspeedpattern, TEST_TIMEZONE=$failuretimezonepattern, TEST_RESULT=FAIL[^,]*,/";
|
||||
debug "failure filter: ^TEST_ID=[^,]*, TEST_BRANCH=$failurebranchpattern, TEST_REPO=$failurerepopattern, TEST_BUILDTYPE=$failurebuildtypepattern, TEST_TYPE=$failuretesttypepattern, TEST_OS=$failureospattern, TEST_KERNEL=$failurekernelpattern, TEST_PROCESSORTYPE=$failurearchpattern, TEST_MEMORY=$failurememorypattern, TEST_CPUSPEED=$failurecpuspeedpattern, TEST_TIMEZONE=$failuretimezonepattern, TEST_OPTIONS=$failurejsoptionspattern, TEST_RESULT=FAIL[^,]*,/";
|
||||
|
||||
if (defined($rawlogfile)) {
|
||||
|
||||
@@ -199,7 +202,7 @@ if (defined($rawlogfile)) {
|
||||
|
||||
print ALLLOG "$_\n";
|
||||
|
||||
if ($_ =~ /^TEST_ID=[^,]*, TEST_BRANCH=$failurebranchpattern, TEST_REPO=$failurerepopattern, TEST_BUILDTYPE=$failurebuildtypepattern, TEST_TYPE=$failuretesttypepattern, TEST_OS=$failureospattern, TEST_KERNEL=$failurekernelpattern, TEST_PROCESSORTYPE=$failurearchpattern, TEST_MEMORY=$failurememorypattern, TEST_CPUSPEED=$failurecpuspeedpattern, TEST_TIMEZONE=$failuretimezonepattern, TEST_RESULT=FAIL[^,]*,/) {
|
||||
if ($_ =~ /^TEST_ID=[^,]*, TEST_BRANCH=$failurebranchpattern, TEST_REPO=$failurerepopattern, TEST_BUILDTYPE=$failurebuildtypepattern, TEST_TYPE=$failuretesttypepattern, TEST_OS=$failureospattern, TEST_KERNEL=$failurekernelpattern, TEST_PROCESSORTYPE=$failurearchpattern, TEST_MEMORY=$failurememorypattern, TEST_CPUSPEED=$failurecpuspeedpattern, TEST_TIMEZONE=$failuretimezonepattern, TEST_OPTIONS=$failurejsoptionspattern, TEST_RESULT=FAIL[^,]*,/) {
|
||||
debug "failure: $_";
|
||||
push @failures, ($_);
|
||||
print FAILURELOG "$_\n";
|
||||
@@ -235,7 +238,7 @@ else
|
||||
while (<FAILURES>) {
|
||||
chomp;
|
||||
|
||||
if ($_ =~ /^TEST_ID=[^,]*, TEST_BRANCH=$failurebranchpattern, TEST_REPO=$failurerepopattern, TEST_BUILDTYPE=$failurebuildtypepattern, TEST_TYPE=$failuretesttypepattern, TEST_OS=$failureospattern, TEST_KERNEL=$failurekernelpattern, TEST_PROCESSORTYPE=$failurearchpattern, TEST_MEMORY=$failurememorypattern, TEST_CPUSPEED=$failurecpuspeedpattern, TEST_TIMEZONE=$failuretimezonepattern, TEST_RESULT=FAIL[^,]*,/) {
|
||||
if ($_ =~ /^TEST_ID=[^,]*, TEST_BRANCH=$failurebranchpattern, TEST_REPO=$failurerepopattern, TEST_BUILDTYPE=$failurebuildtypepattern, TEST_TYPE=$failuretesttypepattern, TEST_OS=$failureospattern, TEST_KERNEL=$failurekernelpattern, TEST_PROCESSORTYPE=$failurearchpattern, TEST_MEMORY=$failurememorypattern, TEST_CPUSPEED=$failurecpuspeedpattern, TEST_TIMEZONE=$failuretimezonepattern, TEST_OPTIONS=$failurejsoptionspattern, TEST_RESULT=FAIL[^,]*,/) {
|
||||
debug "failure: $_";
|
||||
push @failures, ($_);
|
||||
}
|
||||
@@ -397,6 +400,7 @@ known-failures.pl [-b|--branch] branch
|
||||
[-M|--memory] memory
|
||||
[-S|--speed] speed
|
||||
[-z|--timezone] timezone
|
||||
[-J|--jsoptions] jsoptions
|
||||
[-r|--patterns] patterns
|
||||
([-f|--failurelogfile] failurelogfile|[-l|--logfile] rawlogfile])
|
||||
[-O|--outputprefix] outputprefix
|
||||
@@ -406,7 +410,7 @@ known-failures.pl [-b|--branch] branch
|
||||
=============== ============================================================
|
||||
-b branch branch 1.8.0, 1.8.1, 1.9.0, all
|
||||
-R repository CVS for 1.8.0, 1.8.1, 1.9.0 branches,
|
||||
mercurial repository name for 1.9.1 branches
|
||||
mercurial repository name for 1.9.1 and later branches
|
||||
(\`basename http://hg.mozilla.org/repository\`)
|
||||
-T buildtype build type opt, debug, all
|
||||
-t testtype test type browser, shell, all
|
||||
@@ -416,6 +420,7 @@ known-failures.pl [-b|--branch] branch
|
||||
-M memory memory in Gigabytes, all or a specific pattern
|
||||
-S speed speed, all or specific pattern
|
||||
-z timezone -0400, -0700, etc. default to user\'s zone
|
||||
-J jsoptions JavaScript options
|
||||
-l rawlogfile raw logfile
|
||||
-f failurelogfile failure logfile
|
||||
-r patterns known failure patterns
|
||||
@@ -476,6 +481,20 @@ sub parse_options {
|
||||
elsif ($option eq "z") {
|
||||
$timezone = $value;
|
||||
}
|
||||
elsif ($option eq "J") {
|
||||
my (@s, $j);
|
||||
|
||||
if (! $value) {
|
||||
$jsoptions = 'none';
|
||||
}
|
||||
else {
|
||||
$value =~ s/(-\w) (\w)/$1$2/g;
|
||||
@s = sort split / /, $value;
|
||||
$j = join(" ", @s);
|
||||
$j =~ s/(-\w)(\w)/$1 $2/g;
|
||||
$jsoptions = $j;
|
||||
}
|
||||
}
|
||||
elsif ($option eq "r") {
|
||||
$patterns = $value;
|
||||
}
|
||||
@@ -495,7 +514,7 @@ sub parse_options {
|
||||
}
|
||||
|
||||
if ($debug) {
|
||||
print "branch=$branch, buildtype=$buildtype, testtype=$testtype, os=$os, kernel=$kernel, arch=$arch, memory=$memory, cpuspeed=$cpuspeed, timezone=$timezone, patterns=$patterns, rawlogfile=$rawlogfile failurelogfile=$failurelogfile, outputprefix=$outputprefix\n";
|
||||
print "branch=$branch, buildtype=$buildtype, testtype=$testtype, os=$os, kernel=$kernel, arch=$arch, memory=$memory, cpuspeed=$cpuspeed, timezone=$timezone, jsoptions=$jsoptions, patterns=$patterns, rawlogfile=$rawlogfile failurelogfile=$failurelogfile, outputprefix=$outputprefix\n";
|
||||
}
|
||||
Getopt::Mixed::cleanup();
|
||||
|
||||
@@ -527,6 +546,10 @@ sub parse_options {
|
||||
usage "missing timezone";
|
||||
}
|
||||
|
||||
if (!defined($jsoptions)) {
|
||||
$jsoptions = 'none';
|
||||
}
|
||||
|
||||
if (!defined($patterns)) {
|
||||
usage "missing patterns";
|
||||
}
|
||||
@@ -555,6 +578,10 @@ sub parse_options {
|
||||
$knownfailurebranchpattern = "(1\\.9\\.1|\\.\\*)";
|
||||
$failurebranchpattern = "1\\.9\\.1";
|
||||
}
|
||||
elsif ($branch eq "1.9.2") {
|
||||
$knownfailurebranchpattern = "(1\\.9\\.2|\\.\\*)";
|
||||
$failurebranchpattern = "1\\.9\\.2";
|
||||
}
|
||||
elsif ($branch eq "all") {
|
||||
$knownfailurebranchpattern = "[^,]*";
|
||||
$failurebranchpattern = "[^,]*";
|
||||
@@ -657,6 +684,14 @@ sub parse_options {
|
||||
$failuretimezonepattern = escape_string("$timezone");
|
||||
}
|
||||
|
||||
if ($jsoptions eq "all") {
|
||||
$knownfailurejsoptionspattern = "[^,]*";
|
||||
$failurejsoptionspattern = "[^,]*";
|
||||
}
|
||||
else {
|
||||
$knownfailurejsoptionspattern = "(" . escape_string($jsoptions) . "|\\.\\*)";
|
||||
$failurejsoptionspattern = escape_string("$jsoptions");
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -61,8 +61,8 @@ sub processfile
|
||||
|
||||
$record = {};
|
||||
|
||||
my ($test_id, $test_branch, $test_repo, $test_buildtype, $test_type, $test_os, $test_kernel, $test_processortype, $test_memory, $test_cpuspeed, $test_timezone, $test_result, $test_exitstatus, $test_description) = $_ =~
|
||||
/TEST_ID=([^,]*), TEST_BRANCH=([^,]*), TEST_REPO=([^,]*), TEST_BUILDTYPE=([^,]*), TEST_TYPE=([^,]*), TEST_OS=([^,]*), TEST_KERNEL=([^,]*), TEST_PROCESSORTYPE=([^,]*), TEST_MEMORY=([^,]*), TEST_CPUSPEED=([^,]*), TEST_TIMEZONE=([^,]*), TEST_RESULT=([^,]*), TEST_EXITSTATUS=([^,]*), TEST_DESCRIPTION=(.*)/;
|
||||
my ($test_id, $test_branch, $test_repo, $test_buildtype, $test_type, $test_os, $test_kernel, $test_processortype, $test_memory, $test_cpuspeed, $test_timezone, $test_options, $test_result, $test_exitstatus, $test_description) = $_ =~
|
||||
/TEST_ID=([^,]*), TEST_BRANCH=([^,]*), TEST_REPO=([^,]*), TEST_BUILDTYPE=([^,]*), TEST_TYPE=([^,]*), TEST_OS=([^,]*), TEST_KERNEL=([^,]*), TEST_PROCESSORTYPE=([^,]*), TEST_MEMORY=([^,]*), TEST_CPUSPEED=([^,]*), TEST_TIMEZONE=([^,]*), TEST_OPTIONS=([^,]*), TEST_RESULT=([^,]*), TEST_EXITSTATUS=([^,]*), TEST_DESCRIPTION=(.*)/;
|
||||
|
||||
$record->{TEST_ID} = $test_id;
|
||||
$record->{TEST_BRANCH} = $test_branch;
|
||||
@@ -75,11 +75,14 @@ sub processfile
|
||||
$record->{TEST_MEMORY} = $test_memory;
|
||||
$record->{TEST_CPUSPEED} = $test_cpuspeed;
|
||||
$record->{TEST_TIMEZONE} = $test_timezone;
|
||||
$record->{TEST_OPTIONS} = $test_options;
|
||||
$record->{TEST_RESULT} = $test_result;
|
||||
$record->{TEST_EXITSTATUS} = $test_exitstatus;
|
||||
$record->{TEST_DESCRIPTION} = $test_description;
|
||||
|
||||
dbg("processfile: \$_=$_");
|
||||
if ($DEBUG) {
|
||||
dbg("processfile: \$_=$_");
|
||||
}
|
||||
|
||||
my @list1 = ();
|
||||
my @list2 = ();
|
||||
@@ -88,59 +91,78 @@ sub processfile
|
||||
my $universefield;
|
||||
|
||||
$item1 = copyreference($record);
|
||||
dbg("processfile: check copyreference");
|
||||
dbg("processfile: \$record=" . recordtostring($record));
|
||||
dbg("processfile: \$item1=" . recordtostring($item1));
|
||||
|
||||
if ($DEBUG) {
|
||||
dbg("processfile: check copyreference");
|
||||
dbg("processfile: \$record=" . recordtostring($record));
|
||||
dbg("processfile: \$item1=" . recordtostring($item1));
|
||||
}
|
||||
push @list1, ($item1);
|
||||
|
||||
for ($iuniversefield = 0; $iuniversefield < @universefields; $iuniversefield++)
|
||||
{
|
||||
$universefield = $universefields[$iuniversefield];
|
||||
|
||||
dbg("processfile: \$universefields[$iuniversefield]=$universefield, \$record->{$universefield}=$record->{$universefield}");
|
||||
if ($DEBUG) {
|
||||
dbg("processfile: \$universefields[$iuniversefield]=$universefield, \$record->{$universefield}=$record->{$universefield}");
|
||||
}
|
||||
|
||||
for ($j = 0; $j < @list1; $j++)
|
||||
{
|
||||
$item1 = $list1[$j];
|
||||
dbg("processfile: item1 \$list1[$j]=" . recordtostring($item1));
|
||||
if ($DEBUG) {
|
||||
dbg("processfile: item1 \$list1[$j]=" . recordtostring($item1));
|
||||
}
|
||||
# create a reference to a copy of the hash referenced by $item1
|
||||
if ($item1->{$universefield} ne '.*')
|
||||
{
|
||||
dbg("processfile: literal value");
|
||||
if ($DEBUG) {
|
||||
dbg("processfile: literal value");
|
||||
}
|
||||
$item2 = copyreference($item1);
|
||||
dbg("processfile: check copyreference");
|
||||
dbg("processfile: \$item1=" . recordtostring($item1));
|
||||
dbg("processfile: \$item2=" . recordtostring($item2));
|
||||
dbg("processfile: pushing existing record to list 2: " . recordtostring($item2));
|
||||
if ($DEBUG) {
|
||||
dbg("processfile: check copyreference");
|
||||
dbg("processfile: \$item1=" . recordtostring($item1));
|
||||
dbg("processfile: \$item2=" . recordtostring($item2));
|
||||
dbg("processfile: pushing existing record to list 2: " . recordtostring($item2));
|
||||
}
|
||||
push @list2, ($item2);
|
||||
}
|
||||
else
|
||||
{
|
||||
dbg("processfile: wildcard value");
|
||||
if ($DEBUG) {
|
||||
dbg("processfile: wildcard value");
|
||||
}
|
||||
$keyfielduniversekey = getuniversekey($item1, $universefield);
|
||||
@keyfielduniverse = getuniverse($keyfielduniversekey, $universefield);
|
||||
|
||||
dbg("processfile: \$keyfielduniversekey=$keyfielduniversekey, \@keyfielduniverse=" . join(',', @keyfielduniverse));
|
||||
if ($DEBUG) {
|
||||
dbg("processfile: \$keyfielduniversekey=$keyfielduniversekey, \@keyfielduniverse=" . join(',', @keyfielduniverse));
|
||||
}
|
||||
|
||||
for ($i = 0; $i < @keyfielduniverse; $i++)
|
||||
{
|
||||
$item2 = copyreference($item1);
|
||||
dbg("processfile: check copyreference");
|
||||
dbg("processfile: \$item1=" . recordtostring($item1));
|
||||
dbg("processfile: \$item2=" . recordtostring($item2));
|
||||
if ($DEBUG) {
|
||||
dbg("processfile: check copyreference");
|
||||
dbg("processfile: \$item1=" . recordtostring($item1));
|
||||
dbg("processfile: \$item2=" . recordtostring($item2));
|
||||
}
|
||||
$item2->{$universefield} = $keyfielduniverse[$i];
|
||||
dbg("processfile: pushing new record to list 2 " . recordtostring($item2));
|
||||
if ($DEBUG) {
|
||||
dbg("processfile: pushing new record to list 2 " . recordtostring($item2));
|
||||
}
|
||||
push @list2, ($item2);
|
||||
}
|
||||
}
|
||||
for ($i = 0; $i < @list1; $i++)
|
||||
{
|
||||
dbg("processfile: \$list1[$i]=" . recordtostring($list1[$i]));
|
||||
}
|
||||
for ($i = 0; $i < @list2; $i++)
|
||||
{
|
||||
dbg("processfile: \$list2[$i]=" . recordtostring($list2[$i]));
|
||||
if ($DEBUG) {
|
||||
for ($i = 0; $i < @list1; $i++)
|
||||
{
|
||||
dbg("processfile: \$list1[$i]=" . recordtostring($list1[$i]));
|
||||
}
|
||||
for ($i = 0; $i < @list2; $i++)
|
||||
{
|
||||
dbg("processfile: \$list2[$i]=" . recordtostring($list2[$i]));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -75,8 +75,8 @@ sub processfile
|
||||
|
||||
$recordcurr = {};
|
||||
|
||||
my ($test_id, $test_branch, $test_repo, $test_buildtype, $test_type, $test_os, $test_kernel, $test_processortype, $test_memory, $test_cpuspeed, $test_timezone, $test_result, $test_exitstatus, $test_description) = $_ =~
|
||||
/TEST_ID=([^,]*), TEST_BRANCH=([^,]*), TEST_REPO=([^,]*), TEST_BUILDTYPE=([^,]*), TEST_TYPE=([^,]*), TEST_OS=([^,]*), TEST_KERNEL=([^,]*), TEST_PROCESSORTYPE=([^,]*), TEST_MEMORY=([^,]*), TEST_CPUSPEED=([^,]*), TEST_TIMEZONE=([^,]*), TEST_RESULT=([^,]*), TEST_EXITSTATUS=([^,]*), TEST_DESCRIPTION=(.*)/;
|
||||
my ($test_id, $test_branch, $test_repo, $test_buildtype, $test_type, $test_os, $test_kernel, $test_processortype, $test_memory, $test_cpuspeed, $test_timezone, $test_options, $test_result, $test_exitstatus, $test_description) = $_ =~
|
||||
/TEST_ID=([^,]*), TEST_BRANCH=([^,]*), TEST_REPO=([^,]*), TEST_BUILDTYPE=([^,]*), TEST_TYPE=([^,]*), TEST_OS=([^,]*), TEST_KERNEL=([^,]*), TEST_PROCESSORTYPE=([^,]*), TEST_MEMORY=([^,]*), TEST_CPUSPEED=([^,]*), TEST_TIMEZONE=([^,]*), TEST_OPTIONS=([^,]*), TEST_RESULT=([^,]*), TEST_EXITSTATUS=([^,]*), TEST_DESCRIPTION=(.*)/;
|
||||
|
||||
$recordcurr->{TEST_ID} = $test_id;
|
||||
$recordcurr->{TEST_BRANCH} = $test_branch;
|
||||
@@ -89,6 +89,7 @@ sub processfile
|
||||
$recordcurr->{TEST_MEMORY} = $test_memory;
|
||||
$recordcurr->{TEST_CPUSPEED} = $test_cpuspeed;
|
||||
$recordcurr->{TEST_TIMEZONE} = $test_timezone;
|
||||
$recordcurr->{TEST_OPTIONS} = $test_options;
|
||||
$recordcurr->{TEST_RESULT} = $test_result;
|
||||
$recordcurr->{TEST_EXITSTATUS} = $test_exitstatus;
|
||||
$recordcurr->{TEST_DESCRIPTION} = $test_description;
|
||||
|
||||
17
mozilla/js/tests/performance-1.9.1.tests
Normal file
17
mozilla/js/tests/performance-1.9.1.tests
Normal file
@@ -0,0 +1,17 @@
|
||||
ecma_3/RegExp/regress-289669.js
|
||||
ecma_3/RegExp/regress-311414.js
|
||||
js1_5/Array/regress-99120-01.js
|
||||
js1_5/Array/regress-99120-02.js
|
||||
js1_5/Regress/regress-169559.js
|
||||
js1_5/Regress/regress-313967-01.js
|
||||
js1_5/Regress/regress-313967-02.js
|
||||
js1_5/Regress/regress-347306-01.js
|
||||
js1_5/Regress/regress-416628.js
|
||||
js1_5/String/regress-157334-01.js
|
||||
js1_5/String/regress-314890.js
|
||||
js1_5/String/regress-322772.js
|
||||
js1_5/String/regress-56940-01.js
|
||||
js1_5/String/regress-56940-02.js
|
||||
js1_5/extensions/regress-335700.js
|
||||
js1_5/extensions/regress-347306-02.js
|
||||
js1_5/extensions/regress-363258.js
|
||||
17
mozilla/js/tests/performance-1.9.2.tests
Normal file
17
mozilla/js/tests/performance-1.9.2.tests
Normal file
@@ -0,0 +1,17 @@
|
||||
ecma_3/RegExp/regress-289669.js
|
||||
ecma_3/RegExp/regress-311414.js
|
||||
js1_5/Array/regress-99120-01.js
|
||||
js1_5/Array/regress-99120-02.js
|
||||
js1_5/Regress/regress-169559.js
|
||||
js1_5/Regress/regress-313967-01.js
|
||||
js1_5/Regress/regress-313967-02.js
|
||||
js1_5/Regress/regress-347306-01.js
|
||||
js1_5/Regress/regress-416628.js
|
||||
js1_5/String/regress-157334-01.js
|
||||
js1_5/String/regress-314890.js
|
||||
js1_5/String/regress-322772.js
|
||||
js1_5/String/regress-56940-01.js
|
||||
js1_5/String/regress-56940-02.js
|
||||
js1_5/extensions/regress-335700.js
|
||||
js1_5/extensions/regress-347306-02.js
|
||||
js1_5/extensions/regress-363258.js
|
||||
@@ -69,6 +69,7 @@ local ($test_id,
|
||||
$test_type,
|
||||
$tmp_test_type,
|
||||
$test_description,
|
||||
$test_jsoptions,
|
||||
@messages,
|
||||
$test_processortype,
|
||||
$test_kernel,
|
||||
@@ -84,6 +85,8 @@ local $test_cpuspeed = 0;
|
||||
local %test_reported = ();
|
||||
local $test_repo = 'CVS';
|
||||
|
||||
$test_jsoptions = 'none';
|
||||
|
||||
while ($file = shift @ARGV)
|
||||
{
|
||||
@messages = ();
|
||||
@@ -140,9 +143,9 @@ while ($file = shift @ARGV)
|
||||
dbg "\nINPUT: $_";
|
||||
}
|
||||
|
||||
last if ( $_ =~ /^arguments:/);
|
||||
last if ( $_ =~ /^include:/);
|
||||
|
||||
if (($envval) = $_ =~ /^environment: TEST_MOZILLA_HG=http:\/\/hg.mozilla.org\/(.*)/ )
|
||||
if (($envval) = $_ =~ /^environment: TEST_MOZILLA_HG=http:\/\/hg.mozilla.org.*\/([^\/]+)/ )
|
||||
{
|
||||
$test_repo = $envval;
|
||||
}
|
||||
@@ -162,6 +165,20 @@ while ($file = shift @ARGV)
|
||||
{
|
||||
$test_os = $envval;
|
||||
}
|
||||
|
||||
if ($_ =~ /^arguments: javascriptoptions/)
|
||||
{
|
||||
my ($o, @s, $j);
|
||||
|
||||
($o) = $_ =~ /^arguments: javascriptoptions=(.*)/;
|
||||
$o =~ s/(-\w) (\w)/$1$2/g;
|
||||
@s = sort split / /, $o;
|
||||
$j = join(" ", @s);
|
||||
$j =~ s/(-\w)(\w)/$1 $2/g;
|
||||
|
||||
$test_jsoptions = $j || "none";
|
||||
dbg "javascriptoptions: $test_jsoptions";
|
||||
}
|
||||
}
|
||||
|
||||
if ($test_cpuspeed < 4)
|
||||
@@ -579,6 +596,7 @@ sub outputrecord
|
||||
"TEST_MEMORY=$test_memory, " .
|
||||
"TEST_CPUSPEED=$test_cpuspeed, " .
|
||||
"TEST_TIMEZONE=$test_timezone, " .
|
||||
"TEST_OPTIONS=$test_jsoptions, " .
|
||||
"TEST_RESULT=$test_result, " .
|
||||
"TEST_EXITSTATUS=$test_exit_status, " .
|
||||
"TEST_DESCRIPTION=$test_description, " .
|
||||
|
||||
@@ -113,6 +113,7 @@ for testlogfile in `ls $testlogfiles`; do
|
||||
case "$testlogfile" in
|
||||
*,js,*) testtype=shell;;
|
||||
*,firefox,*) testtype=browser;;
|
||||
*,thunderbird,*) testtype=browser;;
|
||||
*,fennec,*) testtype=browser;;
|
||||
*) error "unknown testtype in logfile $testlogfile" $LINENO;;
|
||||
esac
|
||||
@@ -133,6 +134,7 @@ for testlogfile in `ls $testlogfiles`; do
|
||||
*,1.8.1*) branch=1.8.1;;
|
||||
*,1.9.0*) branch=1.9.0;;
|
||||
*,1.9.1*) branch=1.9.1;;
|
||||
*,1.9.2*) branch=1.9.2;;
|
||||
*)
|
||||
branch=`grep -m 1 '^environment: TEST_BRANCH=' $worktestlogfile | sed 's|.*TEST_BRANCH=\(.*\)|\1|'`
|
||||
if [[ -z "$branch" ]]; then
|
||||
@@ -143,7 +145,7 @@ for testlogfile in `ls $testlogfiles`; do
|
||||
|
||||
debug "branch=$branch"
|
||||
|
||||
repo=`grep -m 1 '^environment: TEST_MOZILLA_HG=' $worktestlogfile | sed 's|.*TEST_MOZILLA_HG=http://hg.mozilla.org/\(.*\)|\1|'`
|
||||
repo=`grep -m 1 '^environment: TEST_MOZILLA_HG=' $worktestlogfile | sed 's|.*TEST_MOZILLA_HG=http://hg.mozilla.org.*/\([^\/]*\)|\1|'`
|
||||
if [[ -z "$repo" ]]; then
|
||||
repo=CVS
|
||||
fi
|
||||
@@ -176,9 +178,14 @@ for testlogfile in `ls $testlogfiles`; do
|
||||
speed=`grep -m 1 '^environment: TEST_CPUSPEED=' $worktestlogfile | sed 's|.*TEST_CPUSPEED=\(.*\)|\1|'`
|
||||
|
||||
timezone=`basename $testlogfile | sed 's|^[-0-9]*\([-+]\)\([0-9]\{4,4\}\),.*|\1\2|'`
|
||||
|
||||
debug "timezone=$timezone"
|
||||
|
||||
jsoptions=`grep -m 1 '^arguments: javascriptoptions=' $worktestlogfile | sed 's|.*javascriptoptions=\(.*\)|\1|'`
|
||||
if [[ -z "$jsoptions" ]]; then
|
||||
jsoptions=none
|
||||
fi
|
||||
debug "jsoptions=$jsoptions"
|
||||
|
||||
outputprefix=$testlogfile
|
||||
|
||||
includetests="included-$branch-$testtype-$buildtype.tests"
|
||||
@@ -198,6 +205,7 @@ for testlogfile in `ls $testlogfiles`; do
|
||||
-M "$memory" \
|
||||
-S "$speed" \
|
||||
-z "$timezone" \
|
||||
-J "$jsoptions" \
|
||||
-r "$TEST_JSDIR/failures.txt" \
|
||||
-l "$worktestlogfile" \
|
||||
-O "$outputprefix"
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -74,7 +74,8 @@ usage: runtests.sh -p products -b branches -e extra\\
|
||||
variable description
|
||||
=============== ============================================================
|
||||
-p products space separated list of js, firefox, fennec
|
||||
-b branches space separated list of branches 1.8.0, 1.8.1, 1.9.0, 1.9.1
|
||||
-b branches space separated list of branches 1.8.0, 1.8.1, 1.9.0, 1.9.1,
|
||||
1.9.2.
|
||||
-e extra optional. extra qualifier to pick build tree and mozconfig.
|
||||
-T buildtypes space separated list of build types opt debug
|
||||
-B buildcommands optional space separated list of build commands
|
||||
@@ -191,6 +192,7 @@ for testlogfile in $testlogfiles; do
|
||||
case "$testlogfile" in
|
||||
*,js,*) testtype=shell;;
|
||||
*,firefox,*) testtype=browser;;
|
||||
*,thunderbird,*) testtype=browser;;
|
||||
*,fennec,*) testtype=browser;;
|
||||
*) error "unknown testtype in logfile $testlogfile" $LINENO;;
|
||||
esac
|
||||
@@ -207,10 +209,11 @@ for testlogfile in $testlogfiles; do
|
||||
*,1.8.1*) branch=1.8.1;;
|
||||
*,1.9.0*) branch=1.9.0;;
|
||||
*,1.9.1*) branch=1.9.1;;
|
||||
*,1.9.2*) branch=1.9.2;;
|
||||
*) error "unknown branch in logfile $testlogfile" $LINENO;;
|
||||
esac
|
||||
|
||||
repo=`grep -m 1 '^environment: TEST_MOZILLA_HG=' $testlogfile | sed 's|.*TEST_MOZILLA_HG=http://hg.mozilla.org/\(.*\)|\1|'`
|
||||
repo=`grep -m 1 '^environment: TEST_MOZILLA_HG=' $testlogfile | sed 's|.*TEST_MOZILLA_HG=http://hg.mozilla.org.*/\([^\/]*\)|\1|'`
|
||||
if [[ -z "$repo" ]]; then
|
||||
repo=CVS
|
||||
fi
|
||||
@@ -227,6 +230,7 @@ for testlogfile in $testlogfiles; do
|
||||
-T $buildtype \
|
||||
-R $repo \
|
||||
-t $testtype \
|
||||
-J "$javascriptoptions" \
|
||||
-o "$OSID" \
|
||||
-K "$TEST_KERNEL" \
|
||||
-A "$TEST_PROCESSORTYPE" \
|
||||
|
||||
@@ -9,6 +9,7 @@ ecma_3/RegExp/regress-367888.js
|
||||
js1_5/Array/regress-330812.js
|
||||
js1_5/Array/regress-350256-03.js
|
||||
js1_5/extensions/regress-330569.js
|
||||
js1_5/extensions/regress-335700.js
|
||||
js1_5/extensions/regress-342960.js
|
||||
js1_5/extensions/regress-345967.js
|
||||
js1_5/extensions/regress-350531.js
|
||||
|
||||
@@ -4,8 +4,11 @@ ecma_3/Array/regress-322135-04.js
|
||||
ecma_3/RegExp/regress-307456.js
|
||||
ecma_3/RegExp/regress-330684.js
|
||||
js1_5/Array/regress-350256-03.js
|
||||
js1_5/extensions/regress-335700.js
|
||||
js1_5/extensions/regress-345967.js
|
||||
js1_5/extensions/regress-350531.js
|
||||
js1_5/GC/regress-346794.js
|
||||
js1_5/Regress/regress-271716-n.js
|
||||
js1_6/extensions/regress-455464-04.js
|
||||
js1_7/extensions/regress-458679.js
|
||||
js1_8/extensions/regress-452913.js
|
||||
|
||||
@@ -1,12 +1,25 @@
|
||||
e4x/GC/regress-324278.js
|
||||
e4x/Regress/regress-319872.js
|
||||
ecma_3/Array/regress-322135-03.js
|
||||
ecma_3/Array/regress-322135-04.js
|
||||
ecma_3/RegExp/regress-307456.js
|
||||
ecma_3/RegExp/regress-330684.js
|
||||
ecma/Statements/12.6.3-7-n.js
|
||||
js1_5/Array/regress-350256-03.js
|
||||
js1_5/extensions/regress-335700.js
|
||||
js1_5/extensions/regress-336409-1.js
|
||||
js1_5/extensions/regress-336410-1.js
|
||||
js1_5/extensions/regress-342960.js
|
||||
js1_5/extensions/regress-345967.js
|
||||
js1_5/extensions/regress-350531.js
|
||||
js1_5/GC/regress-319980-01.js
|
||||
js1_5/GC/regress-338653.js
|
||||
js1_5/GC/regress-346794.js
|
||||
js1_5/Regress/regress-271716-n.js
|
||||
js1_5/Regress/regress-274035.js
|
||||
js1_5/Regress/regress-303213.js
|
||||
js1_5/Regress/regress-3649-n.js
|
||||
js1_5/Regress/regress-451322.js
|
||||
js1_6/extensions/regress-456826.js
|
||||
js1_7/extensions/regress-455982-01.js
|
||||
js1_7/extensions/regress-458679.js
|
||||
|
||||
16
mozilla/js/tests/slow-n-1.9.2.tests
Normal file
16
mozilla/js/tests/slow-n-1.9.2.tests
Normal file
@@ -0,0 +1,16 @@
|
||||
e4x/Regress/regress-319872.js
|
||||
ecma_3/Array/regress-322135-03.js
|
||||
ecma_3/Array/regress-322135-04.js
|
||||
ecma_3/RegExp/regress-307456.js
|
||||
ecma_3/RegExp/regress-330684.js
|
||||
ecma/Statements/12.6.3-7-n.js
|
||||
js1_5/Array/regress-350256-03.js
|
||||
js1_5/extensions/regress-335700.js
|
||||
js1_5/extensions/regress-342960.js
|
||||
js1_5/extensions/regress-345967.js
|
||||
js1_5/extensions/regress-350531.js
|
||||
js1_5/GC/regress-338653.js
|
||||
js1_5/GC/regress-346794.js
|
||||
js1_5/Regress/regress-271716-n.js
|
||||
js1_5/Regress/regress-451322.js
|
||||
js1_7/extensions/regress-458679.js
|
||||
@@ -8,8 +8,11 @@ ecma_3/Array/regress-322135-03.js
|
||||
ecma_3/Array/regress-322135-04.js
|
||||
ecma_3/RegExp/regress-307456.js
|
||||
ecma_3/RegExp/regress-330684.js
|
||||
ecma_3/RegExp/regress-367888.js
|
||||
ecma/Statements/12.6.3-7-n.js
|
||||
js1_5/Array/regress-330812.js
|
||||
js1_5/Array/regress-350256-03.js
|
||||
js1_5/extensions/regress-330569.js
|
||||
js1_5/extensions/regress-335700.js
|
||||
js1_5/extensions/regress-336409-1.js
|
||||
js1_5/extensions/regress-336409-2.js
|
||||
@@ -18,13 +21,25 @@ js1_5/extensions/regress-336410-2.js
|
||||
js1_5/extensions/regress-342960.js
|
||||
js1_5/extensions/regress-345967.js
|
||||
js1_5/extensions/regress-350531.js
|
||||
js1_5/extensions/regress-351448.js
|
||||
js1_5/Function/regress-338121-01.js
|
||||
js1_5/Function/regress-338121-02.js
|
||||
js1_5/GC/regress-311497.js
|
||||
js1_5/GC/regress-319980-01.js
|
||||
js1_5/GC/regress-338653.js
|
||||
js1_5/GC/regress-346794.js
|
||||
js1_5/Regress/regress-271716-n.js
|
||||
js1_5/Regress/regress-274035.js
|
||||
js1_5/Regress/regress-303213.js
|
||||
js1_5/Regress/regress-312588.js
|
||||
js1_5/Regress/regress-314401.js
|
||||
js1_5/Regress/regress-329530.js
|
||||
js1_5/Regress/regress-3649-n.js
|
||||
js1_5/Regress/regress-451322.js
|
||||
js1_6/extensions/regress-455464-04.js
|
||||
js1_6/extensions/regress-456826.js
|
||||
js1_7/extensions/regress-455982-01.js
|
||||
js1_7/extensions/regress-458679.js
|
||||
js1_7/iterable/regress-341815.js
|
||||
js1_7/iterable/regress-341821.js
|
||||
js1_8/extensions/regress-452913.js
|
||||
|
||||
@@ -142,3 +142,8 @@ js1_7/decompilation/regress-352011.js
|
||||
js1_7/decompilation/regress-352022.js
|
||||
js1_7/extensions/regress-353249.js
|
||||
js1_7/regress/regress-420399.js
|
||||
#
|
||||
js1_7/decompilation/regress-371802.js
|
||||
# bug 446026
|
||||
js1_8/regress/regress-442333-01.js
|
||||
js1_6/Array/regress-320887.js
|
||||
|
||||
149
mozilla/js/tests/spidermonkey-n-1.9.2.tests
Normal file
149
mozilla/js/tests/spidermonkey-n-1.9.2.tests
Normal file
@@ -0,0 +1,149 @@
|
||||
# Obsolete SpiderMonkey tests
|
||||
#
|
||||
# invalidated by bug 10278
|
||||
#
|
||||
js1_2/function/function-001-n.js
|
||||
js1_3/Script/function-001-n.js
|
||||
js1_3/regress/function-001-n.js
|
||||
#
|
||||
# WONTFIX bug 119719
|
||||
#
|
||||
js1_5/Regress/regress-119719.js
|
||||
#
|
||||
# Spidermonkey now defaults lineNumber and fileName
|
||||
# to the location and file where the exception occured.
|
||||
# exclude original test which assumes the defaults are
|
||||
# 0 and ''
|
||||
#
|
||||
js1_5/extensions/regress-50447.js
|
||||
#
|
||||
# Invalid bug
|
||||
#
|
||||
e4x/Regress/regress-278112.js
|
||||
#
|
||||
# behavior changed to match MSIE/Opera/etc
|
||||
# see bug 309840
|
||||
#
|
||||
js1_5/Regress/regress-173067.js
|
||||
#
|
||||
# per comment in bug, this test is obsolete
|
||||
# for spidermonkey and rhino.
|
||||
#
|
||||
ecma_3/Statements/regress-121744.js
|
||||
#
|
||||
# remove version dependent tests
|
||||
# see bug 325921
|
||||
#
|
||||
js1_2/Array/array_split_1.js
|
||||
js1_2/Array/tostring_1.js
|
||||
js1_2/Array/tostring_2.js
|
||||
js1_2/Objects/toString-001.js
|
||||
js1_2/String/concat.js
|
||||
js1_2/function/Function_object.js
|
||||
js1_2/function/Number.js
|
||||
js1_2/function/String.js
|
||||
js1_2/function/function-001-n.js
|
||||
js1_2/function/length.js
|
||||
js1_2/function/regexparg-2-n.js
|
||||
js1_2/function/tostring-1.js
|
||||
js1_2/function/tostring-2.js
|
||||
js1_2/operator/equality.js
|
||||
js1_2/regexp/RegExp_lastIndex.js
|
||||
js1_2/regexp/string_split.js
|
||||
js1_2/version120/boolean-001.js
|
||||
js1_2/version120/regress-99663.js
|
||||
js1_3/Script/delete-001.js
|
||||
js1_3/Script/function-001-n.js
|
||||
js1_3/regress/delete-001.js
|
||||
js1_3/regress/function-001-n.js
|
||||
#
|
||||
# tests not yet implemented
|
||||
#
|
||||
e4x/TypeConversion/10.5.1.js
|
||||
e4x/TypeConversion/10.5.js
|
||||
e4x/TypeConversion/10.6.1.js
|
||||
e4x/TypeConversion/10.6.js
|
||||
e4x/Types/9.1.1.10.js
|
||||
e4x/Types/9.1.1.11.js
|
||||
e4x/Types/9.1.1.12.js
|
||||
e4x/Types/9.1.1.13.js
|
||||
e4x/Types/9.1.1.4.js
|
||||
e4x/Types/9.1.1.5.js
|
||||
e4x/Types/9.1.1.7.js
|
||||
e4x/Types/9.1.1.8.js
|
||||
e4x/Types/9.2.1.10.js
|
||||
e4x/Types/9.2.1.3.js
|
||||
e4x/Types/9.2.1.4.js
|
||||
e4x/Types/9.2.1.5.js
|
||||
e4x/Types/9.2.1.6.js
|
||||
e4x/Types/9.2.1.7.js
|
||||
e4x/XML/13.4.4.1.js
|
||||
ecma_2/RegExp/exec-001.js
|
||||
ecma_2/String/replace-001.js
|
||||
#
|
||||
# pre ecma warnings are doa
|
||||
#
|
||||
js1_5/Regress/regress-106244.js
|
||||
#
|
||||
# do not ignore unicode formatting chars/trunk - bug 274152
|
||||
#
|
||||
ecma_3/Unicode/uc-001.js
|
||||
#
|
||||
# import/export removed in Gecko 1.9.1/SpiderMonkey 1.8.1 - bug 447713
|
||||
e4x/Regress/regress-361451.js
|
||||
ecma_2/Exceptions/lexical-010.js
|
||||
ecma_2/Exceptions/lexical-022.js
|
||||
ecma/LexicalConventions/7.4.3-3-n.js
|
||||
js1_5/decompilation/regress-349484.js
|
||||
js1_5/extensions/regress-355622.js
|
||||
js1_5/extensions/regress-418730.js
|
||||
js1_5/GetSet/regress-353264.js
|
||||
js1_5/Regress/regress-249211.js
|
||||
js1_5/Regress/regress-350692.js
|
||||
js1_5/Regress/regress-354924.js
|
||||
js1_5/Regress/regress-362583.js
|
||||
js1_7/extensions/regress-353214-01.js
|
||||
js1_7/lexical/regress-346642-03.js
|
||||
js1_5/extensions/regress-432075.js
|
||||
js1_5/extensions/regress-421621.js
|
||||
# bug 450275
|
||||
js1_5/extensions/regress-434837-01.js
|
||||
# bug 408002
|
||||
js1_5/Regress/regress-320119.js
|
||||
# bug 380469
|
||||
js1_7/geniter/regress-347739.js
|
||||
js1_7/geniter/regress-349012-01.js
|
||||
js1_7/geniter/regress-349331.js
|
||||
js1_7/iterable/regress-340526-02.js
|
||||
# bug 443074
|
||||
e4x/decompilation/regress-373678.js
|
||||
js1_5/decompilation/regress-351336.js
|
||||
js1_5/decompilation/regress-351626.js
|
||||
js1_5/decompilation/regress-354878.js
|
||||
js1_5/decompilation/regress-373678.js
|
||||
js1_5/extensions/regress-352281.js
|
||||
js1_7/decompilation/regress-346642-01.js
|
||||
js1_7/decompilation/regress-349605.js
|
||||
# decompilation change in spidermonkey 1.8.1
|
||||
js1_7/decompilation/regress-351070-01.js
|
||||
js1_8/decompilation/regress-443074.js
|
||||
js1_8/genexps/regress-380237-03.js
|
||||
js1_8/genexps/regress-380237-04.js
|
||||
# decompilation change in spidermonkey 1.8.1 (bug 460501)
|
||||
js1_7/decompilation/regress-352026.js
|
||||
# https://bugzilla.mozilla.org/show_bug.cgi?id=458851#c7
|
||||
js1_5/extensions/regress-437288-01.js
|
||||
js1_5/decompilation/regress-437288-02.js
|
||||
# more decompilation changes, bug 461233
|
||||
js1_7/block/regress-352609.js
|
||||
js1_7/decompilation/regress-349602.js
|
||||
js1_7/decompilation/regress-350991.js
|
||||
js1_7/decompilation/regress-352011.js
|
||||
js1_7/decompilation/regress-352022.js
|
||||
js1_7/extensions/regress-353249.js
|
||||
js1_7/regress/regress-420399.js
|
||||
#
|
||||
js1_7/decompilation/regress-371802.js
|
||||
bug 446026
|
||||
js1_8/regress/regress-442333-01.js
|
||||
js1_6/Array/regress-320887.js
|
||||
@@ -81,7 +81,7 @@ usage: test.sh -p product -b branch -T buildtype -x executablepath -N profilenam
|
||||
variable description
|
||||
=============== ============================================================
|
||||
-p product required. firefox|thunderbird|js|fennec
|
||||
-b branch required. 1.8.0|1.8.1|1.9.0|1.9.1
|
||||
-b branch required. one of 1.8.0 1.8.1 1.9.0 1.9.1 1.9.2
|
||||
-s jsshellsourcepath required for shell. path to js shell source directory mozilla/js/src
|
||||
-T buildtype required. one of opt debug
|
||||
-x executablepath required for browser. directory-tree containing executable 'product'
|
||||
@@ -322,6 +322,9 @@ if [[ -z "$includetests" ]]; then
|
||||
1.9.1)
|
||||
includetests="$includetests js1_7 js1_8 ecma_3_1 js1_8_1"
|
||||
;;
|
||||
1.9.2)
|
||||
includetests="$includetests js1_7 js1_8 ecma_3_1 js1_8_1"
|
||||
;;
|
||||
esac
|
||||
fi
|
||||
|
||||
|
||||
@@ -1,222 +1,196 @@
|
||||
TEST_OS=darwin, TEST_KERNEL=8.11.0, TEST_PROCESSORTYPE=powerpc32, TEST_MEMORY=4, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_BRANCH=1.8.1, TEST_REPO=CVS, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=darwin, TEST_KERNEL=8.11.0, TEST_PROCESSORTYPE=powerpc32, TEST_MEMORY=4, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_BRANCH=1.8.1, TEST_REPO=CVS, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=darwin, TEST_KERNEL=8.11.0, TEST_PROCESSORTYPE=powerpc32, TEST_MEMORY=4, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_BRANCH=1.8.1, TEST_REPO=CVS, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=darwin, TEST_KERNEL=8.11.0, TEST_PROCESSORTYPE=powerpc32, TEST_MEMORY=4, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_BRANCH=1.8.1, TEST_REPO=CVS, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=darwin, TEST_KERNEL=8.11.0, TEST_PROCESSORTYPE=powerpc32, TEST_MEMORY=4, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.0, TEST_REPO=CVS, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=darwin, TEST_KERNEL=8.11.0, TEST_PROCESSORTYPE=powerpc32, TEST_MEMORY=4, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.0, TEST_REPO=CVS, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=darwin, TEST_KERNEL=8.11.0, TEST_PROCESSORTYPE=powerpc32, TEST_MEMORY=4, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.0, TEST_REPO=CVS, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=darwin, TEST_KERNEL=8.11.0, TEST_PROCESSORTYPE=powerpc32, TEST_MEMORY=4, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.0, TEST_REPO=CVS, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=darwin, TEST_KERNEL=8.11.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.8.1, TEST_REPO=CVS, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=darwin, TEST_KERNEL=8.11.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.8.1, TEST_REPO=CVS, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=darwin, TEST_KERNEL=8.11.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.8.1, TEST_REPO=CVS, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=darwin, TEST_KERNEL=8.11.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.8.1, TEST_REPO=CVS, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=darwin, TEST_KERNEL=8.11.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.0, TEST_REPO=CVS, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=darwin, TEST_KERNEL=8.11.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.0, TEST_REPO=CVS, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=darwin, TEST_KERNEL=8.11.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.0, TEST_REPO=CVS, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=darwin, TEST_KERNEL=8.11.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.0, TEST_REPO=CVS, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=darwin, TEST_KERNEL=8.11.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-central, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=darwin, TEST_KERNEL=8.11.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-central, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=darwin, TEST_KERNEL=8.11.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-central, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=darwin, TEST_KERNEL=8.11.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-central, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=darwin, TEST_KERNEL=8.11.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=darwin, TEST_KERNEL=8.11.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=darwin, TEST_KERNEL=8.11.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=darwin, TEST_KERNEL=8.11.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=darwin, TEST_KERNEL=9.5.0, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.8.1, TEST_REPO=CVS, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=darwin, TEST_KERNEL=9.5.0, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.8.1, TEST_REPO=CVS, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=darwin, TEST_KERNEL=9.5.0, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.8.1, TEST_REPO=CVS, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=darwin, TEST_KERNEL=9.5.0, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.8.1, TEST_REPO=CVS, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=darwin, TEST_KERNEL=9.5.0, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.0, TEST_REPO=CVS, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=darwin, TEST_KERNEL=9.5.0, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.0, TEST_REPO=CVS, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=darwin, TEST_KERNEL=9.5.0, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.0, TEST_REPO=CVS, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=darwin, TEST_KERNEL=9.5.0, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.0, TEST_REPO=CVS, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=darwin, TEST_KERNEL=9.5.0, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-central, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=darwin, TEST_KERNEL=9.5.0, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-central, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=darwin, TEST_KERNEL=9.5.0, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-central, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=darwin, TEST_KERNEL=9.5.0, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-central, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=darwin, TEST_KERNEL=9.5.0, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=darwin, TEST_KERNEL=9.5.0, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=darwin, TEST_KERNEL=9.5.0, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=darwin, TEST_KERNEL=9.5.0, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=amd32, TEST_MEMORY=4, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.0, TEST_REPO=CVS, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=amd32, TEST_MEMORY=4, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.0, TEST_REPO=CVS, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=amd32, TEST_MEMORY=4, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.0, TEST_REPO=CVS, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=amd32, TEST_MEMORY=4, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.0, TEST_REPO=CVS, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=3, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.8.1, TEST_REPO=CVS, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=3, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.8.1, TEST_REPO=CVS, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=3, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.8.1, TEST_REPO=CVS, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=3, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.8.1, TEST_REPO=CVS, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=3, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.0, TEST_REPO=CVS, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=3, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.0, TEST_REPO=CVS, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=3, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.0, TEST_REPO=CVS, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=3, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.0, TEST_REPO=CVS, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=3, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-central, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=3, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-central, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=3, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-central, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=3, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-central, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=3, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=3, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=3, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=3, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=3, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-central, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=3, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-central, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=3, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=3, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_BRANCH=1.8.1, TEST_REPO=CVS, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_BRANCH=1.8.1, TEST_REPO=CVS, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_BRANCH=1.8.1, TEST_REPO=CVS, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_BRANCH=1.8.1, TEST_REPO=CVS, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.8.1, TEST_REPO=CVS, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.8.1, TEST_REPO=CVS, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.8.1, TEST_REPO=CVS, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.8.1, TEST_REPO=CVS, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.0, TEST_REPO=CVS, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.0, TEST_REPO=CVS, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.0, TEST_REPO=CVS, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.0, TEST_REPO=CVS, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-central, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-central, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-central, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-central, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_BRANCH=1.8.1, TEST_REPO=CVS, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_BRANCH=1.8.1, TEST_REPO=CVS, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_BRANCH=1.8.1, TEST_REPO=CVS, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_BRANCH=1.8.1, TEST_REPO=CVS, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.0, TEST_REPO=CVS, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.0, TEST_REPO=CVS, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.0, TEST_REPO=CVS, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.0, TEST_REPO=CVS, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-central, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-central, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-central, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-central, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=3, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_BRANCH=1.8.1, TEST_REPO=CVS, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=3, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_BRANCH=1.8.1, TEST_REPO=CVS, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=3, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_BRANCH=1.8.1, TEST_REPO=CVS, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=3, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_BRANCH=1.8.1, TEST_REPO=CVS, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=3, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.0, TEST_REPO=CVS, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=3, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.0, TEST_REPO=CVS, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=3, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.0, TEST_REPO=CVS, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=3, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.0, TEST_REPO=CVS, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=3, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-central, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=3, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-central, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=3, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-central, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=3, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-central, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=3, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=3, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=3, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=3, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=3, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-central, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=3, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-central, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=3, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-central, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=3, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-central, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=3, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=3, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=3, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=3, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=3, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-central, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=3, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-central, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=4, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_BRANCH=1.8.1, TEST_REPO=CVS, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=4, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_BRANCH=1.8.1, TEST_REPO=CVS, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=4, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_BRANCH=1.8.1, TEST_REPO=CVS, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=4, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_BRANCH=1.8.1, TEST_REPO=CVS, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=4, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.0, TEST_REPO=CVS, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=4, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.0, TEST_REPO=CVS, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=4, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.0, TEST_REPO=CVS, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=4, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.0, TEST_REPO=CVS, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=4, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-central, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=4, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-central, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=4, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-central, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=4, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-central, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=4, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=4, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=4, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=4, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.8.1, TEST_REPO=CVS, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.8.1, TEST_REPO=CVS, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.8.1, TEST_REPO=CVS, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.8.1, TEST_REPO=CVS, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.0, TEST_REPO=CVS, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.0, TEST_REPO=CVS, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.0, TEST_REPO=CVS, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.0, TEST_REPO=CVS, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-central, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-central, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-central, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-central, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=4, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_BRANCH=1.8.1, TEST_REPO=CVS, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=4, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_BRANCH=1.8.1, TEST_REPO=CVS, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=4, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_BRANCH=1.8.1, TEST_REPO=CVS, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=4, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_BRANCH=1.8.1, TEST_REPO=CVS, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=4, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.0, TEST_REPO=CVS, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=4, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.0, TEST_REPO=CVS, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=4, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.0, TEST_REPO=CVS, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=4, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.0, TEST_REPO=CVS, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=4, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-central, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=4, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-central, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=4, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-central, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=4, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-central, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=4, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=4, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=4, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=4, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=amd32, TEST_MEMORY=2, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.8.1, TEST_REPO=CVS, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=amd32, TEST_MEMORY=2, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.8.1, TEST_REPO=CVS, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=amd32, TEST_MEMORY=2, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.8.1, TEST_REPO=CVS, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=amd32, TEST_MEMORY=2, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.8.1, TEST_REPO=CVS, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=amd32, TEST_MEMORY=2, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.0, TEST_REPO=CVS, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=amd32, TEST_MEMORY=2, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.0, TEST_REPO=CVS, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=amd32, TEST_MEMORY=2, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.0, TEST_REPO=CVS, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=amd32, TEST_MEMORY=2, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.0, TEST_REPO=CVS, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=amd32, TEST_MEMORY=2, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_BRANCH=1.8.1, TEST_REPO=CVS, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_BRANCH=1.8.1, TEST_REPO=CVS, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_BRANCH=1.8.1, TEST_REPO=CVS, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_BRANCH=1.8.1, TEST_REPO=CVS, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_BRANCH=1.8.1, TEST_REPO=CVS, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.0, TEST_REPO=CVS, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.0, TEST_REPO=CVS, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.0, TEST_REPO=CVS, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.0, TEST_REPO=CVS, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-central, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-central, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-central, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-central, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.8.1, TEST_REPO=CVS, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.8.1, TEST_REPO=CVS, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.8.1, TEST_REPO=CVS, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.8.1, TEST_REPO=CVS, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.0, TEST_REPO=CVS, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.0, TEST_REPO=CVS, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.0, TEST_REPO=CVS, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.0, TEST_REPO=CVS, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-central, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-central, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-central, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-central, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=nt, TEST_KERNEL=6.0, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-central, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=nt, TEST_KERNEL=6.0, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-central, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=nt, TEST_KERNEL=6.0, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-central, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=nt, TEST_KERNEL=6.0, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=nt, TEST_KERNEL=6.0, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=nt, TEST_KERNEL=6.0, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=nt, TEST_KERNEL=6.0, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=darwin, TEST_KERNEL=8.11.0, TEST_PROCESSORTYPE=powerpc32, TEST_MEMORY=4, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.8.1, TEST_REPO=CVS, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=darwin, TEST_KERNEL=8.11.0, TEST_PROCESSORTYPE=powerpc32, TEST_MEMORY=4, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.8.1, TEST_REPO=CVS, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=darwin, TEST_KERNEL=8.11.0, TEST_PROCESSORTYPE=powerpc32, TEST_MEMORY=4, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.8.1, TEST_REPO=CVS, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=darwin, TEST_KERNEL=8.11.0, TEST_PROCESSORTYPE=powerpc32, TEST_MEMORY=4, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.8.1, TEST_REPO=CVS, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=darwin, TEST_KERNEL=8.11.0, TEST_PROCESSORTYPE=powerpc32, TEST_MEMORY=4, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.0, TEST_REPO=CVS, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=darwin, TEST_KERNEL=8.11.0, TEST_PROCESSORTYPE=powerpc32, TEST_MEMORY=4, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.0, TEST_REPO=CVS, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=darwin, TEST_KERNEL=8.11.0, TEST_PROCESSORTYPE=powerpc32, TEST_MEMORY=4, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.0, TEST_REPO=CVS, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=darwin, TEST_KERNEL=8.11.0, TEST_PROCESSORTYPE=powerpc32, TEST_MEMORY=4, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.0, TEST_REPO=CVS, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=darwin, TEST_KERNEL=8.11.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-1.9.1, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=darwin, TEST_KERNEL=8.11.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-1.9.1, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=darwin, TEST_KERNEL=8.11.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-1.9.1, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=darwin, TEST_KERNEL=8.11.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-1.9.1, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=darwin, TEST_KERNEL=8.11.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=darwin, TEST_KERNEL=8.11.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=darwin, TEST_KERNEL=8.11.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=darwin, TEST_KERNEL=8.11.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=darwin, TEST_KERNEL=8.11.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.2, TEST_REPO=mozilla-central, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=darwin, TEST_KERNEL=8.11.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.2, TEST_REPO=mozilla-central, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=darwin, TEST_KERNEL=8.11.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.2, TEST_REPO=mozilla-central, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=darwin, TEST_KERNEL=8.11.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.2, TEST_REPO=mozilla-central, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=darwin, TEST_KERNEL=8.11.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-1.9.1, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=darwin, TEST_KERNEL=8.11.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-1.9.1, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=darwin, TEST_KERNEL=8.11.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-1.9.1, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=darwin, TEST_KERNEL=8.11.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-1.9.1, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=darwin, TEST_KERNEL=8.11.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=darwin, TEST_KERNEL=8.11.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=darwin, TEST_KERNEL=8.11.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=darwin, TEST_KERNEL=8.11.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=darwin, TEST_KERNEL=8.11.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.2, TEST_REPO=mozilla-central, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=darwin, TEST_KERNEL=8.11.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.2, TEST_REPO=mozilla-central, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=darwin, TEST_KERNEL=8.11.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.2, TEST_REPO=mozilla-central, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=darwin, TEST_KERNEL=8.11.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.2, TEST_REPO=mozilla-central, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=darwin, TEST_KERNEL=9.6.0, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-1.9.1, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=darwin, TEST_KERNEL=9.6.0, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-1.9.1, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=darwin, TEST_KERNEL=9.6.0, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-1.9.1, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=darwin, TEST_KERNEL=9.6.0, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-1.9.1, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=darwin, TEST_KERNEL=9.6.0, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=darwin, TEST_KERNEL=9.6.0, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=darwin, TEST_KERNEL=9.6.0, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=darwin, TEST_KERNEL=9.6.0, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=darwin, TEST_KERNEL=9.6.0, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.2, TEST_REPO=mozilla-central, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=darwin, TEST_KERNEL=9.6.0, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.2, TEST_REPO=mozilla-central, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=darwin, TEST_KERNEL=9.6.0, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.2, TEST_REPO=mozilla-central, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=darwin, TEST_KERNEL=9.6.0, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.2, TEST_REPO=mozilla-central, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=darwin, TEST_KERNEL=9.6.0, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-1.9.1, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=darwin, TEST_KERNEL=9.6.0, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-1.9.1, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=darwin, TEST_KERNEL=9.6.0, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-1.9.1, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=darwin, TEST_KERNEL=9.6.0, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-1.9.1, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=darwin, TEST_KERNEL=9.6.0, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=darwin, TEST_KERNEL=9.6.0, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=darwin, TEST_KERNEL=9.6.0, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=darwin, TEST_KERNEL=9.6.0, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=darwin, TEST_KERNEL=9.6.0, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.2, TEST_REPO=mozilla-central, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=darwin, TEST_KERNEL=9.6.0, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.2, TEST_REPO=mozilla-central, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=darwin, TEST_KERNEL=9.6.0, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.2, TEST_REPO=mozilla-central, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=darwin, TEST_KERNEL=9.6.0, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.2, TEST_REPO=mozilla-central, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=amd32, TEST_MEMORY=4, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.0, TEST_REPO=CVS, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=amd32, TEST_MEMORY=4, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.0, TEST_REPO=CVS, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=amd32, TEST_MEMORY=4, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.0, TEST_REPO=CVS, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=amd32, TEST_MEMORY=4, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.0, TEST_REPO=CVS, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-1.9.1, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-1.9.1, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-1.9.1, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-1.9.1, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.2, TEST_REPO=mozilla-central, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.2, TEST_REPO=mozilla-central, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.2, TEST_REPO=mozilla-central, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.2, TEST_REPO=mozilla-central, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.0, TEST_REPO=CVS, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.0, TEST_REPO=CVS, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.0, TEST_REPO=CVS, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.0, TEST_REPO=CVS, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-1.9.1, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-1.9.1, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-1.9.1, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-1.9.1, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.2, TEST_REPO=mozilla-central, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.2, TEST_REPO=mozilla-central, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.2, TEST_REPO=mozilla-central, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.2, TEST_REPO=mozilla-central, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-1.9.1, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-1.9.1, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-1.9.1, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-1.9.1, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.2, TEST_REPO=mozilla-central, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.2, TEST_REPO=mozilla-central, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.2, TEST_REPO=mozilla-central, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.2, TEST_REPO=mozilla-central, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-1.9.1, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-1.9.1, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-1.9.1, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-1.9.1, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.2, TEST_REPO=mozilla-central, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.2, TEST_REPO=mozilla-central, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.2, TEST_REPO=mozilla-central, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=4, TEST_CPUSPEED=slow, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.2, TEST_REPO=mozilla-central, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=8, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-1.9.1, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=8, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-1.9.1, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=8, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-1.9.1, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=8, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-1.9.1, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=8, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=8, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=8, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=8, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=8, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.2, TEST_REPO=mozilla-central, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=8, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.2, TEST_REPO=mozilla-central, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=8, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.2, TEST_REPO=mozilla-central, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=8, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.2, TEST_REPO=mozilla-central, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=8, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-1.9.1, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=8, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-1.9.1, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=8, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-1.9.1, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=8, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-1.9.1, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=8, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=8, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=8, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=8, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=8, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.2, TEST_REPO=mozilla-central, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=8, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.2, TEST_REPO=mozilla-central, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=8, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.2, TEST_REPO=mozilla-central, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=linux, TEST_KERNEL=2.6.18, TEST_PROCESSORTYPE=intel64, TEST_MEMORY=8, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.2, TEST_REPO=mozilla-central, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=amd32, TEST_MEMORY=2, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.8.1, TEST_REPO=CVS, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=amd32, TEST_MEMORY=2, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.8.1, TEST_REPO=CVS, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=amd32, TEST_MEMORY=2, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.8.1, TEST_REPO=CVS, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=amd32, TEST_MEMORY=2, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.8.1, TEST_REPO=CVS, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=amd32, TEST_MEMORY=2, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.0, TEST_REPO=CVS, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=amd32, TEST_MEMORY=2, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.0, TEST_REPO=CVS, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=amd32, TEST_MEMORY=2, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.0, TEST_REPO=CVS, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=amd32, TEST_MEMORY=2, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.0, TEST_REPO=CVS, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-1.9.1, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-1.9.1, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-1.9.1, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-1.9.1, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.2, TEST_REPO=mozilla-central, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.2, TEST_REPO=mozilla-central, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.2, TEST_REPO=mozilla-central, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.2, TEST_REPO=mozilla-central, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-1.9.1, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-1.9.1, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-1.9.1, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-1.9.1, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.2, TEST_REPO=mozilla-central, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.2, TEST_REPO=mozilla-central, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.2, TEST_REPO=mozilla-central, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=fast, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.2, TEST_REPO=mozilla-central, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-1.9.1, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-1.9.1, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-1.9.1, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-1.9.1, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.2, TEST_REPO=mozilla-central, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.2, TEST_REPO=mozilla-central, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.2, TEST_REPO=mozilla-central, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=-j, TEST_BRANCH=1.9.2, TEST_REPO=mozilla-central, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.0, TEST_REPO=CVS, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.0, TEST_REPO=CVS, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.0, TEST_REPO=CVS, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.0, TEST_REPO=CVS, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-1.9.1, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-1.9.1, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-1.9.1, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.1, TEST_REPO=mozilla-1.9.1, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.1, TEST_REPO=tracemonkey, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.2, TEST_REPO=mozilla-central, TEST_BUILDTYPE=debug, TEST_TYPE=browser
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.2, TEST_REPO=mozilla-central, TEST_BUILDTYPE=debug, TEST_TYPE=shell
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.2, TEST_REPO=mozilla-central, TEST_BUILDTYPE=opt, TEST_TYPE=browser
|
||||
TEST_OS=nt, TEST_KERNEL=5.1, TEST_PROCESSORTYPE=intel32, TEST_MEMORY=2, TEST_CPUSPEED=medium, TEST_TIMEZONE=-0800, TEST_OPTIONS=none, TEST_BRANCH=1.9.2, TEST_REPO=mozilla-central, TEST_BUILDTYPE=opt, TEST_TYPE=shell
|
||||
|
||||
@@ -119,21 +119,21 @@ case $product in
|
||||
|
||||
mkdir -p "$BUILDTREE/mozilla/js/src/$JS_OBJDIR"
|
||||
|
||||
if [[ ! -e "$BUILDTREE/mozilla/js/src/configure" ]]; then
|
||||
|
||||
if findprogram autoconf-2.13; then
|
||||
AUTOCONF=autoconf-2.13
|
||||
elif findprogram autoconf213; then
|
||||
AUTOCONF=autoconf213
|
||||
else
|
||||
error "autoconf 2.13 not detected"
|
||||
fi
|
||||
|
||||
cd "$BUILDTREE/mozilla/js/src"
|
||||
eval "$AUTOCONF"
|
||||
# run autoconf everytime instead of only when configure
|
||||
# needs to be initially generated in order to pick up
|
||||
# configure.in changes.
|
||||
|
||||
if findprogram autoconf-2.13; then
|
||||
AUTOCONF=autoconf-2.13
|
||||
elif findprogram autoconf213; then
|
||||
AUTOCONF=autoconf213
|
||||
else
|
||||
error "autoconf 2.13 not detected"
|
||||
fi
|
||||
|
||||
cd "$BUILDTREE/mozilla/js/src"
|
||||
eval "$AUTOCONF"
|
||||
|
||||
cd "$BUILDTREE/mozilla/js/src/$JS_OBJDIR"
|
||||
|
||||
if [[ -e "Makefile" ]]; then
|
||||
|
||||
@@ -53,8 +53,8 @@ $SCRIPT -p products -b branches -B buildcommands -T buildtypes [-e extra] [-d da
|
||||
|
||||
variable description
|
||||
=============== ===========================================================
|
||||
-p products required. one or more of firefox thunderbird fennec
|
||||
-b branches required. one or more of 1.8.0 1.8.1 1.9.0 1.9.1
|
||||
-p products required. one or more of js firefox thunderbird fennec
|
||||
-b branches required. one or more of 1.8.0 1.8.1 1.9.0 1.9.1 1.9.2
|
||||
-B buildcommands required. one or more of clean clobber checkout build
|
||||
-T buildtypes required. one or more of opt debug
|
||||
-e extra optional. extra qualifier to pick build tree and mozconfig.
|
||||
@@ -97,6 +97,9 @@ fi
|
||||
if echo "$buildcommands" | grep -iq clean; then
|
||||
for product in $products; do
|
||||
for branch in $branches; do
|
||||
|
||||
checkProductBranch $product $branch
|
||||
|
||||
for buildtype in $buildtypes; do
|
||||
|
||||
TEST_DATE=`date -u +%Y-%m-%d-%H-%M-%S``date +%z`
|
||||
@@ -118,6 +121,9 @@ fi
|
||||
if echo "$buildcommands" | grep -iq clobber; then
|
||||
for product in $products; do
|
||||
for branch in $branches; do
|
||||
|
||||
checkProductBranch $product $branch
|
||||
|
||||
for buildtype in $buildtypes; do
|
||||
|
||||
TEST_DATE=`date -u +%Y-%m-%d-%H-%M-%S``date +%z`
|
||||
@@ -140,6 +146,8 @@ if echo "$buildcommands" | grep -iq checkout; then
|
||||
for product in $products; do
|
||||
for branch in $branches; do
|
||||
|
||||
checkProductBranch $product $branch
|
||||
|
||||
TEST_DATE=`date -u +%Y-%m-%d-%H-%M-%S``date +%z`
|
||||
TEST_LOG="${TEST_DIR}/results/${TEST_DATE},$product,$branch$extra,$buildtype,$OSID,${TEST_MACHINE},checkout.log"
|
||||
|
||||
@@ -160,6 +168,8 @@ if echo "$buildcommands" | grep -iq build; then
|
||||
for branch in $branches; do
|
||||
for buildtype in $buildtypes; do
|
||||
|
||||
checkProductBranch $product $branch
|
||||
|
||||
TEST_DATE=`date -u +%Y-%m-%d-%H-%M-%S``date +%z`
|
||||
TEST_LOG="${TEST_DIR}/results/${TEST_DATE},$product,$branch$extra,$buildtype,$OSID,${TEST_MACHINE},build.log"
|
||||
|
||||
@@ -175,4 +185,3 @@ if echo "$buildcommands" | grep -iq build; then
|
||||
done
|
||||
done
|
||||
fi
|
||||
|
||||
|
||||
@@ -95,14 +95,7 @@ if [[ -z "$product" || -z "$branch" || -z "$executablepath" || -z "$profilename"
|
||||
usage
|
||||
fi
|
||||
|
||||
if [[ "$product" != "firefox" && "$product" != "thunderbird" && "$product" != "fennec" ]]; then
|
||||
error "product \"$product\" must be one of firefox, thunderbird, or fennec" $LINENO
|
||||
fi
|
||||
|
||||
if [[ "$branch" != "1.8.0" && "$branch" != "1.8.1" && "$branch" != "1.9.0" && "$branch" != "1.9.1" ]];
|
||||
then
|
||||
error "branch \"$branch\" must be one of 1.8.0, 1.8.1, 1.9.0 1.9.1" $LINENO
|
||||
fi
|
||||
checkProductBranch $product $branch
|
||||
|
||||
executable=`get_executable $product $branch $executablepath`
|
||||
|
||||
|
||||
@@ -44,12 +44,18 @@ if [[ -z "$BUILDTREE" ]]; then
|
||||
error "source tree not specified!" $LINENO
|
||||
fi
|
||||
|
||||
if [[ "$branch" == "1.9.1" ]]; then
|
||||
|
||||
if [[ -z "$TEST_MOZILLA_HG" ]]; then
|
||||
error "environment variable TEST_MOZILLA_HG must be set to the hg repository for branch 1.9.1"
|
||||
fi
|
||||
case $branch in
|
||||
1.8.0);;
|
||||
1.8.1);;
|
||||
1.9.0);;
|
||||
*)
|
||||
if [[ -z "$TEST_MOZILLA_HG" ]]; then
|
||||
error "environment variable TEST_MOZILLA_HG must be set to the hg repository for branch $branch"
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
|
||||
if [[ -n "$TEST_MOZILLA_HG" ]]; then
|
||||
# maintain a local copy of the hg repository
|
||||
# clone specific trees from it.
|
||||
|
||||
@@ -67,12 +73,35 @@ if [[ "$branch" == "1.9.1" ]]; then
|
||||
|
||||
cd $TEST_MOZILLA_HG_LOCAL
|
||||
hg pull
|
||||
hg update
|
||||
hg update -C
|
||||
echo "`hg root` id `hg id`"
|
||||
fi
|
||||
|
||||
cd $BUILDTREE
|
||||
|
||||
if [[ -n "$TEST_MOZILLA_HG" ]]; then
|
||||
|
||||
if [[ ! -d mozilla/.hg ]]; then
|
||||
if ! hg clone $TEST_MOZILLA_HG_LOCAL $BUILDTREE/mozilla; then
|
||||
error "during hg clone of $TEST_MOZILLA_HG_LOCAL" $LINENO
|
||||
fi
|
||||
fi
|
||||
|
||||
cd mozilla
|
||||
hg pull
|
||||
hg update
|
||||
|
||||
hg update -r $TEST_MOZILLA_HG_REV
|
||||
|
||||
echo "`hg root` id `hg id`"
|
||||
|
||||
if [[ -n "$DATE_CO_FLAGS" ]]; then
|
||||
eval hg update $DATE_CO_FLAGS
|
||||
echo "Update to date $MOZ_CO_DATE `hg root` id `hg id`"
|
||||
fi
|
||||
|
||||
fi
|
||||
|
||||
case $product in
|
||||
firefox)
|
||||
case $branch in
|
||||
@@ -90,27 +119,8 @@ case $product in
|
||||
fi
|
||||
;;
|
||||
|
||||
1.9.1)
|
||||
1.9.1|1.9.2)
|
||||
|
||||
if [[ ! -d mozilla/.hg ]]; then
|
||||
if ! hg clone $TEST_MOZILLA_HG_LOCAL $BUILDTREE/mozilla; then
|
||||
error "during hg clone of $TEST_MOZILLA_HG_LOCAL" $LINENO
|
||||
fi
|
||||
fi
|
||||
|
||||
cd mozilla
|
||||
hg pull
|
||||
hg update
|
||||
|
||||
hg update -r $TEST_MOZILLA_HG_REV
|
||||
|
||||
echo "`hg root` id `hg id`"
|
||||
|
||||
if [[ -n "$DATE_CO_FLAGS" ]]; then
|
||||
eval hg update $DATE_CO_FLAGS
|
||||
echo "Update to date $MOZ_CO_DATE `hg root` id `hg id`"
|
||||
fi
|
||||
|
||||
# do not use mozilla-build on windows systems as we
|
||||
# must use the cygwin python with the cygwin mercurial.
|
||||
|
||||
@@ -152,26 +162,7 @@ case $product in
|
||||
fi
|
||||
;;
|
||||
|
||||
1.9.1)
|
||||
if [[ ! -d mozilla/.hg ]]; then
|
||||
if ! hg clone $TEST_MOZILLA_HG_LOCAL $BUILDTREE/mozilla; then
|
||||
error "during hg clone of $TEST_MOZILLA_HG_LOCAL" $LINENO
|
||||
fi
|
||||
fi
|
||||
|
||||
cd mozilla
|
||||
hg pull
|
||||
hg update
|
||||
|
||||
hg update -r $TEST_MOZILLA_HG_REV
|
||||
|
||||
echo "`hg root` id `hg id`"
|
||||
|
||||
if [[ -n "$DATE_CO_FLAGS" ]]; then
|
||||
eval hg update $DATE_CO_FLAGS
|
||||
echo "Update to date $MOZ_CO_DATE `hg root` id `hg id`"
|
||||
fi
|
||||
|
||||
1.9.1|1.9.2)
|
||||
|
||||
# do not use mozilla-build on windows systems as we
|
||||
# must use the cygwin python with the cygwin mercurial.
|
||||
@@ -190,33 +181,15 @@ case $product in
|
||||
fennec)
|
||||
|
||||
case $branch in
|
||||
1.9.1)
|
||||
if [[ ! -d mozilla/.hg ]]; then
|
||||
if ! hg clone $TEST_MOZILLA_HG_LOCAL $BUILDTREE/mozilla; then
|
||||
error "during hg clone of $TEST_MOZILLA_HG_LOCAL" $LINENO
|
||||
fi
|
||||
fi
|
||||
|
||||
1.9.1|1.9.2)
|
||||
|
||||
# XXX need to generalize the mobile-browser repository
|
||||
if [[ ! -d mozilla/mobile/.hg ]]; then
|
||||
if [[ ! -d mobile/.hg ]]; then
|
||||
if ! hg clone http://hg.mozilla.org/mobile-browser $BUILDTREE/mozilla/mobile; then
|
||||
error "during hg clone of http://hg.mozilla.org/mobile-browser" $LINENO
|
||||
fi
|
||||
fi
|
||||
|
||||
cd mozilla
|
||||
hg pull
|
||||
hg update
|
||||
|
||||
hg update -r $TEST_MOZILLA_HG_REV
|
||||
|
||||
echo "`hg root` id `hg id`"
|
||||
|
||||
if [[ -n "$DATE_CO_FLAGS" ]]; then
|
||||
eval hg update $DATE_CO_FLAGS
|
||||
echo "Update to date $MOZ_CO_DATE `hg root` id `hg id`"
|
||||
fi
|
||||
|
||||
cd mobile
|
||||
hg pull
|
||||
hg update
|
||||
@@ -262,27 +235,7 @@ case $product in
|
||||
fi
|
||||
;;
|
||||
|
||||
1.9.1)
|
||||
|
||||
if [[ ! -d mozilla/.hg ]]; then
|
||||
if ! hg clone $TEST_MOZILLA_HG_LOCAL $BUILDTREE/mozilla; then
|
||||
error "during hg clone of $TEST_MOZILLA_HG_LOCAL" $LINENO
|
||||
fi
|
||||
fi
|
||||
|
||||
cd mozilla
|
||||
hg pull
|
||||
hg update
|
||||
|
||||
hg update -r $TEST_MOZILLA_HG_REV
|
||||
|
||||
echo "`hg root` id `hg id`"
|
||||
|
||||
if [[ -n "$DATE_CO_FLAGS" ]]; then
|
||||
eval hg update $DATE_CO_FLAGS
|
||||
echo "Update to date $MOZ_CO_DATE `hg root` id `hg id`"
|
||||
fi
|
||||
|
||||
1.9.1|1.9.2)
|
||||
|
||||
# do not use mozilla-build on windows systems as we
|
||||
# must use the cygwin python with the cygwin mercurial.
|
||||
|
||||
@@ -40,9 +40,19 @@
|
||||
source $TEST_DIR/bin/library.sh
|
||||
source $TEST_DIR/bin/set-build-env.sh $@
|
||||
|
||||
if [[ ! -e "$BUILDDIR" ]]; then
|
||||
echo "build directory \"$BUILDDIR\" doesn't exist, ignoring clobber"
|
||||
exit
|
||||
fi
|
||||
|
||||
case $product in
|
||||
firefox|thunderbird|fennec)
|
||||
|
||||
if [[ ! -e "$executablepath" ]]; then
|
||||
echo "executable path $executablepath doesn't exist, ignoring clobber"
|
||||
exit
|
||||
fi
|
||||
|
||||
if ! $buildbash $bashlogin -c "cd $BUILDTREE/mozilla; make -f client.mk clobber" 2>&1; then
|
||||
echo "error during client.mk clobber" $LINENO
|
||||
echo "Forcing clobber" $LINENO
|
||||
@@ -52,27 +62,13 @@ case $product in
|
||||
|
||||
js)
|
||||
|
||||
if [[ ! -e "$jsshellsourcepath" ]]; then
|
||||
echo "javascript shell source path $jsshellsourcepath doesn't exist, ignoring clobber"
|
||||
exit
|
||||
fi
|
||||
if [[ -e "$BUILDTREE/mozilla/js/src/configure.in" ]]; then
|
||||
|
||||
rm -f $BUILDTREE/mozilla/js/src/configure
|
||||
rm -fR $BUILDTREE/mozilla/js/src/*_*.OBJ
|
||||
|
||||
elif [[ -e "$BUILDTREE/mozilla/js/src/Makefile.ref" ]]; then
|
||||
|
||||
if ! $buildbash $bashlogin -c "cd $BUILDTREE/mozilla/js/src/editline; make -f Makefile.ref clobber" 2>&1; then
|
||||
error "during editline clobber" $LINENO
|
||||
fi
|
||||
|
||||
if ! $buildbash $bashlogin -c "cd $BUILDTREE/mozilla/js/src; make -f Makefile.ref clobber" 2>&1; then
|
||||
echo "error during SpiderMonkey clobber." $LINENO
|
||||
echo "Forcing clobber" $LINENO
|
||||
rm -fR $BUILDTREE/mozilla/js/src/*_*.OBJ
|
||||
fi
|
||||
|
||||
else
|
||||
|
||||
error "Neither Makefile.ref or autoconf builds available"
|
||||
|
||||
fi
|
||||
rm -fR $BUILDTREE/mozilla/js/src/*_*.OBJ
|
||||
;;
|
||||
esac
|
||||
|
||||
@@ -53,7 +53,7 @@ $SCRIPT -p product -b branch -x executablepath -D directory -N profilename
|
||||
variable description
|
||||
=============== ============================================================
|
||||
-p product required. firefox, thunderbird or fennec
|
||||
-b branch required. 1.8.0|1.8.1|1.9.0|1.9.1
|
||||
-b branch required. one of 1.8.0 1.8.1 1.9.0 1.9.1 1.9.2
|
||||
-x executablepath required. directory-tree containing executable 'product'
|
||||
-D directory required. directory where profile is to be created.
|
||||
-N profilename required. profile name
|
||||
@@ -93,14 +93,7 @@ if [[ -z "$product" || -z "$branch" || -z "$executablepath" || \
|
||||
usage
|
||||
fi
|
||||
|
||||
if [[ "$product" != "firefox" && "$product" != "thunderbird" && "$product" != "fennec" ]]; then
|
||||
error "product \"$product\" must be one of firefox, thunderbird or fennec" $LINENO
|
||||
fi
|
||||
|
||||
if [[ "$branch" != "1.8.0" && "$branch" != "1.8.1" && "$branch" != "1.9.0" && "$branch" != "1.9.1" ]];
|
||||
then
|
||||
error "branch \"$branch\" must be one of 1.8.0, 1.8.1, 1.9.0 1.9.1" $LINENO
|
||||
fi
|
||||
checkProductBranch $product $branch
|
||||
|
||||
executable=`get_executable $product $branch $executablepath`
|
||||
|
||||
|
||||
@@ -52,7 +52,7 @@ $SCRIPT -p product -b branch -x executablepath -i talkbackid [-d datafiles]
|
||||
variable description
|
||||
=============== ============================================================
|
||||
-p product required. firefox|thunderbird
|
||||
-b branch required. 1.8.0|1.8.1|1.9.0|1.9.1
|
||||
-b branch required. one of 1.8.0 1.8.1
|
||||
-x executablepath required. directory-tree containing executable named
|
||||
'product'
|
||||
-i talkbackid required. identifier to add to talkback url
|
||||
|
||||
@@ -52,7 +52,7 @@ $SCRIPT -p product -b branch -x executablepath -f filename [-d datafiles]
|
||||
variable description
|
||||
=============== ============================================================
|
||||
-p product required. firefox, thunderbird or fennec
|
||||
-b branch required. 1.8.0|1.8.1|1.9.0|1.9.1
|
||||
-b branch required. one of 1.8.0 1.8.1 1.9.0 1.9.1 1.9.2
|
||||
-x executablepath required. directory where to install build
|
||||
-f filename required. path to filename where installer is stored
|
||||
-d datafiles optional. one or more filenames of files containing
|
||||
|
||||
@@ -55,7 +55,7 @@ $SCRIPT -p product -b branch -x executablepath -N profilename -E extensions
|
||||
variable description
|
||||
=============== ============================================================
|
||||
-p product required. firefox, thunderbird or fennec
|
||||
-b branch required. 1.8.0|1.8.1|1.9.0|1.9.1
|
||||
-b branch required. one of 1.8.0 1.8.1 1.9.0 1.9.1 1.9.2
|
||||
-x executablepath required. directory-tree containing executable named
|
||||
'product'
|
||||
-N profilename required. profile name
|
||||
@@ -92,14 +92,7 @@ if [[ -z "$product" || -z "$branch" || \
|
||||
usage
|
||||
fi
|
||||
|
||||
if [[ "$product" != "firefox" && "$product" != "thunderbird" && "$product" != "fennec" ]]; then
|
||||
error "product \"$product\" must be one of firefox, thunderbird or fennec" $LINENO
|
||||
fi
|
||||
|
||||
if [[ "$branch" != "1.8.0" && "$branch" != "1.8.1" && "$branch" != "1.9.0" && "$branch" != "1.9.1" ]];
|
||||
then
|
||||
error "branch \"$branch\" must be one of 1.8.0, 1.8.1, 1.9.0 1.9.1" $LINENO
|
||||
fi
|
||||
checkProductBranch $product $branch
|
||||
|
||||
executable=`get_executable $product $branch $executablepath`
|
||||
|
||||
|
||||
@@ -52,7 +52,7 @@ $SCRIPT -p product -b branch -x executablepath -D directory [-d datafiles]
|
||||
variable description
|
||||
=============== ============================================================
|
||||
-p product required. firefox, thunderbird or fennec
|
||||
-b branch required. 1.8.0|1.8.1|1.9.0|1.9.1
|
||||
-b branch required. one of 1.8.0 1.8.1 1.9.0 1.9.1 1.9.2
|
||||
-x executablepath required. path to browser executable
|
||||
-D directory required. path to location of plugins/components
|
||||
-d datafiles optional. one or more filenames of files containing
|
||||
@@ -87,9 +87,7 @@ if [[ -z "$product" || -z "$branch" || \
|
||||
usage
|
||||
fi
|
||||
|
||||
if [[ "$product" != "firefox" && "$product" != "thunderbird" && "$product" != "fennec" ]]; then
|
||||
error "product \"$product\" must be one of firefox, thunderbird or fennec" $LINENO
|
||||
fi
|
||||
checkProductBranch $product $branch
|
||||
|
||||
executable=`get_executable $product $branch $executablepath`
|
||||
|
||||
|
||||
@@ -106,6 +106,41 @@ error()
|
||||
if [[ -z "$LIBRARYSH" ]]; then
|
||||
# skip remainder of script if it has already included
|
||||
|
||||
checkProductBranch()
|
||||
{
|
||||
local product=$1
|
||||
local branch=$2
|
||||
|
||||
case $product in
|
||||
js|firefox|thunderbird|fennec)
|
||||
;;
|
||||
*)
|
||||
error "product \"$product\" must be one of firefox, thunderbird, or fennec" $LINENO
|
||||
esac
|
||||
|
||||
case $branch in
|
||||
1.8.0|1.8.1|1.9.0|1.9.1|1.9.2)
|
||||
;;
|
||||
*)
|
||||
error "branch \"$branch\" must be one of 1.8.0, 1.8.1, 1.9.0 1.9.1 1.9.2" $LINENO
|
||||
esac
|
||||
|
||||
# special case thunderbird and fennec due to their different
|
||||
# repository and build tree structures.
|
||||
case "$product" in
|
||||
"thunderbird")
|
||||
if [[ $branch == "1.9.2" ]]; then
|
||||
error "thunderbird on branch 1.9.2 is not supported"
|
||||
fi
|
||||
;;
|
||||
"fennec")
|
||||
if [[ $branch != "1.9.1" && "$branch" != "1.9.2" ]]; then
|
||||
error "fennec on branch $branch is not supported"
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
}
|
||||
|
||||
# Darwin 8.11.1's |which| does not return a non-zero exit code if the
|
||||
# program can not be found. Therefore, kludge around it.
|
||||
findprogram()
|
||||
|
||||
@@ -48,6 +48,7 @@ export BUILD_OFFICIAL=1
|
||||
if [[ -z "$CVSROOT" ]]; then
|
||||
if grep -q buildbot@qm ~/.ssh/id_dsa.pub; then
|
||||
export CVSROOT=:ext:unittest@cvs.mozilla.org:/cvsroot
|
||||
export CVS_RSH=ssh
|
||||
else
|
||||
export CVSROOT=:pserver:anonymous@cvs-mirror.mozilla.org:/cvsroot
|
||||
fi
|
||||
@@ -63,9 +64,9 @@ usage()
|
||||
|
||||
usage: set-build-env.sh -p product -b branch -T buildtype [-e extra]
|
||||
|
||||
-p product [firefox|thunderbird|fennec]
|
||||
-b branch [1.8.0|1.8.1|1.9.0|1.9.1]
|
||||
-T buildtype [opt|debug]
|
||||
-p product one of js firefox thunderbird fennec
|
||||
-b branch one of 1.8.0 1.8.1 1.9.0 1.9.1 1.9.2
|
||||
-T buildtype one of opt debug
|
||||
-e extra extra qualifier to pick mozconfig and tree
|
||||
|
||||
EOF
|
||||
@@ -101,7 +102,9 @@ for step in step1; do # dummy loop for handling exits
|
||||
|
||||
# include environment variables
|
||||
datafiles=$TEST_DIR/data/$product,$branch$extra,$buildtype.data
|
||||
loaddata $datafiles
|
||||
if [[ -e "$datafiles" ]]; then
|
||||
loaddata $datafiles
|
||||
fi
|
||||
|
||||
# echo product=$product, branch=$branch, buildtype=$buildtype, extra=$extra
|
||||
|
||||
@@ -127,7 +130,9 @@ for step in step1; do # dummy loop for handling exits
|
||||
elif [[ $branch == "1.9.0" ]]; then
|
||||
export BRANCH_CO_FLAGS="";
|
||||
elif [[ $branch == "1.9.1" ]]; then
|
||||
# XXX: mozilla-central
|
||||
export BRANCH_CO_FLAGS="";
|
||||
elif [[ $branch == "1.9.2" ]]; then
|
||||
TEST_MOZILLA_HG=${TEST_MOZILLA_HG:-http://hg.mozilla.org/mozilla-central}
|
||||
export BRANCH_CO_FLAGS="";
|
||||
else
|
||||
echo "Unknown branch: $branch"
|
||||
@@ -227,43 +232,47 @@ for step in step1; do # dummy loop for handling exits
|
||||
export CONFIG_SHELL=$buildbash
|
||||
export CONFIGURE_ENV_ARGS=$buildbash
|
||||
|
||||
# note that thunderbird and fennec based on 1.9.1 can not be contained in the
|
||||
# same tree as firefox since they come from different repositories.
|
||||
case "$branch-$product" in
|
||||
1.9.1-thunderbird)
|
||||
export BUILDTREE="${BUILDTREE:-$BUILDDIR/$branch-$product$extra}"
|
||||
;;
|
||||
*)
|
||||
export BUILDTREE="${BUILDTREE:-$BUILDDIR/$branch$extra}"
|
||||
;;
|
||||
esac
|
||||
|
||||
if [[ -z $extra ]]; then
|
||||
export BUILDTREE="${BUILDTREE:-$BUILDDIR/$branch}"
|
||||
else
|
||||
export BUILDTREE="${BUILDTREE:-$BUILDDIR/$branch$extra}"
|
||||
#
|
||||
# extras can't be placed in mozconfigs since not all parts
|
||||
# of the build system use mozconfig (e.g. js shell) and since
|
||||
# the obj directory is not configurable for them as well thus
|
||||
# requiring separate source trees
|
||||
#
|
||||
|
||||
#
|
||||
# extras can't be placed in mozconfigs since not all parts
|
||||
# of the build system use mozconfig (e.g. js shell) and since
|
||||
# the obj directory is not configurable for them as well thus
|
||||
# requiring separate source trees
|
||||
#
|
||||
case "$extra" in
|
||||
-too-much-gc)
|
||||
export XCFLAGS="-DWAY_TOO_MUCH_GC=1"
|
||||
export CFLAGS="-DWAY_TOO_MUCH_GC=1"
|
||||
export CXXFLAGS="-DWAY_TOO_MUCH_GC=1"
|
||||
;;
|
||||
-gcov)
|
||||
|
||||
case "$extra" in
|
||||
-too-much-gc)
|
||||
export XCFLAGS="-DWAY_TOO_MUCH_GC=1"
|
||||
export CFLAGS="-DWAY_TOO_MUCH_GC=1"
|
||||
export CXXFLAGS="-DWAY_TOO_MUCH_GC=1"
|
||||
;;
|
||||
-gcov)
|
||||
|
||||
if [[ "$OSID" == "nt" ]]; then
|
||||
echo "NT does not support gcov"
|
||||
myexit 1
|
||||
fi
|
||||
export CFLAGS="--coverage"
|
||||
export CXXFLAGS="--coverage"
|
||||
export XCFLAGS="--coverage"
|
||||
export OS_CFLAGS="--coverage"
|
||||
export LDFLAGS="--coverage"
|
||||
export XLDFLAGS="--coverage"
|
||||
export XLDOPTS="--coverage"
|
||||
;;
|
||||
-jprof)
|
||||
;;
|
||||
esac
|
||||
fi
|
||||
if [[ "$OSID" == "nt" ]]; then
|
||||
echo "NT does not support gcov"
|
||||
myexit 1
|
||||
fi
|
||||
export CFLAGS="--coverage"
|
||||
export CXXFLAGS="--coverage"
|
||||
export XCFLAGS="--coverage"
|
||||
export OS_CFLAGS="--coverage"
|
||||
export LDFLAGS="--coverage"
|
||||
export XLDFLAGS="--coverage"
|
||||
export XLDOPTS="--coverage"
|
||||
;;
|
||||
-jprof)
|
||||
;;
|
||||
esac
|
||||
|
||||
if [[ ! -d $BUILDTREE ]]; then
|
||||
echo "Build directory $BUILDTREE does not exist"
|
||||
@@ -274,24 +283,54 @@ for step in step1; do # dummy loop for handling exits
|
||||
# and is used to find mozilla/(browser|mail)/config/mozconfig
|
||||
if [[ $product == "firefox" ]]; then
|
||||
project=browser
|
||||
export TEST_MOZILLA_HG=${TEST_MOZILLA_HG:-http://hg.mozilla.org/mozilla-central/}
|
||||
case $branch in
|
||||
1.9.1)
|
||||
export TEST_MOZILLA_HG=${TEST_MOZILLA_HG:-http://hg.mozilla.org/releases/mozilla-1.9.1}
|
||||
;;
|
||||
1.9.2)
|
||||
export TEST_MOZILLA_HG=${TEST_MOZILLA_HG:-http://hg.mozilla.org/mozilla-central}
|
||||
;;
|
||||
esac
|
||||
export MOZCONFIG=${MOZCONFIG:-"$BUILDTREE/mozconfig-firefox-$OSID-$TEST_PROCESSORTYPE-$buildtype"}
|
||||
|
||||
elif [[ $product == "thunderbird" ]]; then
|
||||
project=mail
|
||||
export TEST_MOZILLA_HG=${TEST_MOZILLA_HG:-http://hg.mozilla.org/comm-central/}
|
||||
case $branch in
|
||||
1.8.*);;
|
||||
1.9.0);;
|
||||
*)
|
||||
export TEST_MOZILLA_HG=${TEST_MOZILLA_HG:-http://hg.mozilla.org/comm-central}
|
||||
;;
|
||||
esac
|
||||
export MOZCONFIG=${MOZCONFIG:-"$BUILDTREE/mozconfig-thunderbird-$OSID-$TEST_PROCESSORTYPE-$buildtype"}
|
||||
elif [[ $product == "fennec" ]]; then
|
||||
project=mobile
|
||||
export TEST_MOZILLA_HG=${TEST_MOZILLA_HG:-http://hg.mozilla.org/mozilla-central/}
|
||||
case $branch in
|
||||
1.9.1)
|
||||
export TEST_MOZILLA_HG=${TEST_MOZILLA_HG:-http://hg.mozilla.org/releases/mozilla-1.9.1}
|
||||
;;
|
||||
1.9.2)
|
||||
export TEST_MOZILLA_HG=${TEST_MOZILLA_HG:-http://hg.mozilla.org/mozilla-central}
|
||||
;;
|
||||
esac
|
||||
export MOZCONFIG=${MOZCONFIG:-"$BUILDTREE/mozconfig-fennec-$OSID-$TEST_PROCESSORTYPE-$buildtype"}
|
||||
else
|
||||
echo "Assuming project=browser for product: $product"
|
||||
project=browser
|
||||
export TEST_MOZILLA_HG=${TEST_MOZILLA_HG:-http://hg.mozilla.org/mozilla-central/}
|
||||
case $branch in
|
||||
1.9.1)
|
||||
export TEST_MOZILLA_HG=${TEST_MOZILLA_HG:-http://hg.mozilla.org/releases/mozilla-1.9.1}
|
||||
;;
|
||||
1.9.2)
|
||||
export TEST_MOZILLA_HG=${TEST_MOZILLA_HG:-http://hg.mozilla.org/mozilla-central}
|
||||
;;
|
||||
esac
|
||||
export MOZCONFIG=${MOZCONFIG:-"$BUILDTREE/mozconfig-firefox-$OSID-$TEST_PROCESSORTYPE-$buildtype"}
|
||||
fi
|
||||
|
||||
export TEST_MOZILLA_HG_REV=${TEST_MOZILLA_HG_REV:-tip}
|
||||
if [[ -n "$TEST_MOZILLA_HG" ]]; then
|
||||
export TEST_MOZILLA_HG_REV=${TEST_MOZILLA_HG_REV:-tip}
|
||||
fi
|
||||
|
||||
# js shell builds
|
||||
if [[ $buildtype == "debug" ]]; then
|
||||
@@ -307,6 +346,62 @@ for step in step1; do # dummy loop for handling exits
|
||||
esac
|
||||
# end js shell builds
|
||||
|
||||
# set default "data" variables to reduce need for data files.
|
||||
|
||||
case $product in
|
||||
firefox)
|
||||
profilename=${profilename:-$product-$branch$extra-profile}
|
||||
profiledirectory=${profiledirectory:-/tmp/$product-$branch$extra-profile}
|
||||
userpreferences=${userpreferences:-$TEST_DIR/prefs/test-user.js}
|
||||
extensiondir=${extensiondir:-$TEST_DIR/xpi}
|
||||
executablepath=${executablepath:-$BUILDTREE/mozilla/$product-$buildtype/dist}
|
||||
;;
|
||||
js)
|
||||
jsshellsourcepath=${jsshellsourcepath:-$BUILDTREE/mozilla/js/src}
|
||||
;;
|
||||
thunderbird)
|
||||
profilename=${profilename:-$product-$branch$extra-profile}
|
||||
profiledirectory=${profiledirectory:-/tmp/$product-$branch$extra-profile}
|
||||
userpreferences=${userpreferences:-$TEST_DIR/prefs/test-user.js}
|
||||
extensiondir=${extensiondir:-$TEST_DIR/xpi}
|
||||
if [[ $branch == "1.8.0" || $branch = "1.8.1" || $branch == "1.9.0" ]]; then
|
||||
executablepath=${executablepath:-$BUILDTREE/mozilla/$product-$buildtype/dist}
|
||||
else
|
||||
executablepath=${executablepath:-$BUILDTREE/mozilla/$product-$buildtype/mozilla/dist}
|
||||
fi
|
||||
;;
|
||||
fennec)
|
||||
profilename=${profilename:-$product-$branch$extra-profile}
|
||||
profiledirectory=${profiledirectory:-/tmp/$product-$branch$extra-profile}
|
||||
userpreferences=${userpreferences:-$TEST_DIR/prefs/test-user.js}
|
||||
extensiondir=${extensiondir:-$TEST_DIR/xpi}
|
||||
executablepath=${executablepath:-$BUILDTREE/mozilla/$product-$buildtype/mobile/dist}
|
||||
;;
|
||||
esac
|
||||
|
||||
if [[ -n "$datafiles" && ! -e $datafiles ]]; then
|
||||
# if there is not already a data file for this configuration, create it
|
||||
# this will save this configuration for the tester.sh and other scripts
|
||||
# which use datafiles for passing configuration values.
|
||||
|
||||
echo product=\${product:-$product} >> $datafiles
|
||||
echo branch=\${branch:-$branch} >> $datafiles
|
||||
echo buildtype=\${buildtype:-$buildtype} >> $datafiles
|
||||
if [[ $product == "js" ]]; then
|
||||
echo jsshellsourcepath=\${jsshellsourcepath:-$jsshellsourcepath} >> $datafiles
|
||||
else
|
||||
echo profilename=\${profilename:-$profilename} >> $datafiles
|
||||
echo profiledirectory=\${profiledirectory:-$profiledirectory} >> $datafiles
|
||||
echo executablepath=\${executablepath:-$executablepath} >> $datafiles
|
||||
echo userpreferences=\${userpreferences:-$userpreferences} >> $datafiles
|
||||
echo extensiondir=\${extensiondir:-$extensiondir} >> $datafiles
|
||||
fi
|
||||
if [[ -n "$TEST_MOZILLA_HG" ]]; then
|
||||
echo TEST_MOZILLA_HG=\${TEST_MOZILLA_HG:-$TEST_MOZILLA_HG} >> $datafiles
|
||||
echo TEST_MOZILLA_HG_REV=\${TEST_MOZILLA_HG_REV:-$TEST_MOZILLA_HG_REV} >> $datafiles
|
||||
fi
|
||||
fi
|
||||
|
||||
set | sed 's/^/environment: /'
|
||||
echo "mozconfig: $MOZCONFIG"
|
||||
cat $MOZCONFIG | sed 's/^/mozconfig: /'
|
||||
|
||||
@@ -58,8 +58,8 @@ $SCRIPT -p product -b branch
|
||||
|
||||
variable description
|
||||
=============== ===========================================================
|
||||
-p product required. one of firefox, thunderbird or fennec
|
||||
-b branch required. one of 1.8.0 1.8.1 1.9.0 1.9.1
|
||||
-p product required. one of js firefox, thunderbird or fennec
|
||||
-b branch required. one of 1.8.0 1.8.1 1.9.0 1.9.1 1.9.2
|
||||
-u url optional. url where to download build
|
||||
-f filepath optional. location to save downloaded build or to find
|
||||
previously downloaded build. If not specified, the
|
||||
@@ -136,10 +136,18 @@ TEST_BRANCH=$branch
|
||||
TEST_BUILDCOMMANDS=$buildcommands
|
||||
TEST_BUILDTYPE=$buildtype
|
||||
TEST_EXECUTABLEPATH=$executablepath
|
||||
TEST_PROFILENAME=$profilename
|
||||
TEST_PROFILETEMPLATE=$profiletemplate
|
||||
TEST_USERPREFERENCES=$userpreferences
|
||||
TEST_EXTENSIONDIR=$extensiondir
|
||||
if [[ -n "$profilename" ]]; then
|
||||
TEST_PROFILENAME=$profilename
|
||||
fi
|
||||
if [[ -n "$profiletemplate" ]];then
|
||||
TEST_PROFILETEMPLATE=$profiletemplate
|
||||
fi
|
||||
if [[ -n "$userpreferences" ]]; then
|
||||
TEST_USERPREFERENCES=$userpreferences
|
||||
fi
|
||||
if [[ -n "$extensiondir" ]]; then
|
||||
TEST_EXTENSIONDIR=$extensiondir
|
||||
fi
|
||||
TEST_DATAFILES=$datafiles
|
||||
|
||||
dumpenvironment
|
||||
@@ -150,6 +158,8 @@ if [[ -z "$product" || -z "$branch" ]]; then
|
||||
usage
|
||||
fi
|
||||
|
||||
checkProductBranch $product $branch
|
||||
|
||||
if [[ ( -n "$url" || -n "$filepath" ) && ( -n "$buildcommands" ) ]]; then
|
||||
echo "you can not both download and build cvs builds at the same time"
|
||||
usage
|
||||
|
||||
@@ -1,9 +1,10 @@
|
||||
product=fennec
|
||||
branch=1.9.1
|
||||
profilename=fennec-1.9.1-profile
|
||||
profiledirectory=/tmp/fennec-1.9.1-profile
|
||||
executablepath=${BUILDDIR}/1.9.1/mozilla/fennec-debug/mobile/dist
|
||||
userpreferences=${TEST_DIR}/prefs/test-user.js
|
||||
extensiondir=${TEST_DIR}/xpi
|
||||
buildtype=debug
|
||||
TEST_MOZILLA_HG=http://hg.mozilla.org/mozilla-central
|
||||
product=${product:-fennec}
|
||||
branch=${branch:-1.9.1}
|
||||
buildtype=${buildtype:-debug}
|
||||
profilename=${profilename:-fennec-1.9.1-profile}
|
||||
profiledirectory=${profiledirectory:-/tmp/fennec-1.9.1-profile}
|
||||
executablepath=${executablepath:-/work/mozilla/builds/1.9.1/mozilla/fennec-debug/mobile/dist}
|
||||
userpreferences=${userpreferences:-/work/mozilla/builds/hg.mozilla.org/mozilla-central-test/testing/sisyphus/prefs/test-user.js}
|
||||
extensiondir=${extensiondir:-/work/mozilla/builds/hg.mozilla.org/mozilla-central-test/testing/sisyphus/xpi}
|
||||
TEST_MOZILLA_HG=${TEST_MOZILLA_HG:-http://hg.mozilla.org/releases/mozilla-1.9.1}
|
||||
TEST_MOZILLA_HG_REV=${TEST_MOZILLA_HG_REV:-tip}
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
product=fennec
|
||||
branch=1.9.1
|
||||
url=http://ftp.mozilla.org/pub/mozilla.org/mobile/fennec-1.0a1.en-US.mac.dmg
|
||||
url=http://ftp.mozilla.org/pub/mozilla.org/mobile/fennec-1.0a2.en-US.mac.dmg
|
||||
profilename=fennec-1.9.1-profile
|
||||
profiledirectory=/tmp/fennec-1.9.1-profile
|
||||
executablepath=/tmp/fennec-1.9.1
|
||||
userpreferences=${TEST_DIR}/prefs/test-user.js
|
||||
extensiondir=${TEST_DIR}/xpi
|
||||
buildtype=nightly
|
||||
TEST_MOZILLA_HG=http://hg.mozilla.org/mozilla-central
|
||||
TEST_MOZILLA_HG=http://hg.mozilla.org/releases/mozilla-1.9.1
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
product=fennec
|
||||
branch=1.9.1
|
||||
url=http://ftp.mozilla.org/pub/mozilla.org/mobile/fennec-1.0a1.en-US.linux-i686.tar.bz2
|
||||
url=http://ftp.mozilla.org/pub/mozilla.org/mobile/fennec-1.0a2.en-US.linux-i686.tar.bz2
|
||||
profilename=fennec-1.9.1-profile
|
||||
profiledirectory=/tmp/fennec-1.9.1-profile
|
||||
executablepath=/tmp/fennec-1.9.1
|
||||
userpreferences=${TEST_DIR}/prefs/test-user.js
|
||||
extensiondir=${TEST_DIR}/xpi
|
||||
buildtype=nightly
|
||||
TEST_MOZILLA_HG=http://hg.mozilla.org/mozilla-central
|
||||
TEST_MOZILLA_HG=http://hg.mozilla.org/releases/mozilla-1.9.1
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
product=fennec
|
||||
branch=1.9.1
|
||||
url=http://ftp.mozilla.org/pub/mozilla.org/mobile/fennec-1.0a1.en-US.win32.zip
|
||||
url=http://ftp.mozilla.org/pub/mozilla.org/mobile/fennec-1.0a2.en-US.win32.zip
|
||||
profilename=fennec-1.9.1-profile
|
||||
profiledirectory=/tmp/fennec-1.9.1-profile
|
||||
executablepath=/tmp/fennec-1.9.1
|
||||
userpreferences=${TEST_DIR}/prefs/test-user.js
|
||||
extensiondir=${TEST_DIR}/xpi
|
||||
buildtype=nightly
|
||||
TEST_MOZILLA_HG=http://hg.mozilla.org/mozilla-central
|
||||
TEST_MOZILLA_HG=http://hg.mozilla.org/releases/mozilla-1.9.1
|
||||
|
||||
@@ -1,9 +1,10 @@
|
||||
product=fennec
|
||||
branch=1.9.1
|
||||
profilename=fennec-1.9.1-profile
|
||||
profiledirectory=/tmp/fennec-1.9.1-profile
|
||||
executablepath=${BUILDDIR}/1.9.1/mozilla/fennec-opt/mobile/dist
|
||||
userpreferences=${TEST_DIR}/prefs/test-user.js
|
||||
extensiondir=${TEST_DIR}/xpi
|
||||
buildtype=opt
|
||||
TEST_MOZILLA_HG=http://hg.mozilla.org/mozilla-central
|
||||
product=${product:-fennec}
|
||||
branch=${branch:-1.9.1}
|
||||
buildtype=${buildtype:-opt}
|
||||
profilename=${profilename:-fennec-1.9.1-profile}
|
||||
profiledirectory=${profiledirectory:-/tmp/fennec-1.9.1-profile}
|
||||
executablepath=${executablepath:-/work/mozilla/builds/1.9.1/mozilla/fennec-opt/mobile/dist}
|
||||
userpreferences=${userpreferences:-/work/mozilla/builds/hg.mozilla.org/mozilla-central-test/testing/sisyphus/prefs/test-user.js}
|
||||
extensiondir=${extensiondir:-/work/mozilla/builds/hg.mozilla.org/mozilla-central-test/testing/sisyphus/xpi}
|
||||
TEST_MOZILLA_HG=${TEST_MOZILLA_HG:-http://hg.mozilla.org/releases/mozilla-1.9.1}
|
||||
TEST_MOZILLA_HG_REV=${TEST_MOZILLA_HG_REV:-tip}
|
||||
|
||||
@@ -1,9 +1,10 @@
|
||||
product=fennec
|
||||
branch=1.9.1
|
||||
profilename=fennec-1.9.1-test-profile
|
||||
profiledirectory=/tmp/fennec-1.9.1-test-profile
|
||||
executablepath=${BUILDDIR}/1.9.1-test/mozilla/fennec-debug/mobile/dist
|
||||
userpreferences=${TEST_DIR}/prefs/test-user.js
|
||||
extensiondir=${TEST_DIR}/xpi
|
||||
buildtype=debug
|
||||
TEST_MOZILLA_HG=http://hg.mozilla.org/mozilla-central
|
||||
product=${product:-fennec}
|
||||
branch=${branch:-1.9.1}
|
||||
buildtype=${buildtype:-debug}
|
||||
profilename=${profilename:-fennec-1.9.1-test-profile}
|
||||
profiledirectory=${profiledirectory:-/tmp/fennec-1.9.1-test-profile}
|
||||
executablepath=${executablepath:-/work/mozilla/builds/1.9.1-test/mozilla/fennec-debug/mobile/dist}
|
||||
userpreferences=${userpreferences:-/work/mozilla/builds/hg.mozilla.org/mozilla-central-test/testing/sisyphus/prefs/test-user.js}
|
||||
extensiondir=${extensiondir:-/work/mozilla/builds/hg.mozilla.org/mozilla-central-test/testing/sisyphus/xpi}
|
||||
TEST_MOZILLA_HG=${TEST_MOZILLA_HG:-http://hg.mozilla.org/releases/mozilla-1.9.1}
|
||||
TEST_MOZILLA_HG_REV=${TEST_MOZILLA_HG_REV:-tip}
|
||||
|
||||
@@ -1,9 +1,10 @@
|
||||
product=fennec
|
||||
branch=1.9.1
|
||||
profilename=fennec-1.9.1-test-profile
|
||||
profiledirectory=/tmp/fennec-1.9.1-test-profile
|
||||
executablepath=${BUILDDIR}/1.9.1-test/mozilla/fennec-opt/mobile/dist
|
||||
userpreferences=${TEST_DIR}/prefs/test-user.js
|
||||
extensiondir=${TEST_DIR}/xpi
|
||||
buildtype=opt
|
||||
TEST_MOZILLA_HG=http://hg.mozilla.org/mozilla-central
|
||||
product=${product:-fennec}
|
||||
branch=${branch:-1.9.1}
|
||||
buildtype=${buildtype:-opt}
|
||||
profilename=${profilename:-fennec-1.9.1-test-profile}
|
||||
profiledirectory=${profiledirectory:-/tmp/fennec-1.9.1-test-profile}
|
||||
executablepath=${executablepath:-/work/mozilla/builds/1.9.1-test/mozilla/fennec-opt/mobile/dist}
|
||||
userpreferences=${userpreferences:-/work/mozilla/builds/hg.mozilla.org/mozilla-central-test/testing/sisyphus/prefs/test-user.js}
|
||||
extensiondir=${extensiondir:-/work/mozilla/builds/hg.mozilla.org/mozilla-central-test/testing/sisyphus/xpi}
|
||||
TEST_MOZILLA_HG=${TEST_MOZILLA_HG:-http://hg.mozilla.org/releases/mozilla-1.9.1}
|
||||
TEST_MOZILLA_HG_REV=${TEST_MOZILLA_HG_REV:-tip}
|
||||
|
||||
10
mozilla/testing/sisyphus/data/fennec,1.9.2,debug.data
Normal file
10
mozilla/testing/sisyphus/data/fennec,1.9.2,debug.data
Normal file
@@ -0,0 +1,10 @@
|
||||
product=${product:-fennec}
|
||||
branch=${branch:-1.9.2}
|
||||
buildtype=${buildtype:-debug}
|
||||
profilename=${profilename:-fennec-1.9.2-profile}
|
||||
profiledirectory=${profiledirectory:-/tmp/fennec-1.9.2-profile}
|
||||
executablepath=${executablepath:-/work/mozilla/builds/1.9.2/mozilla/fennec-debug/mobile/dist}
|
||||
userpreferences=${userpreferences:-/work/mozilla/builds/hg.mozilla.org/mozilla-central-test/testing/sisyphus/prefs/test-user.js}
|
||||
extensiondir=${extensiondir:-/work/mozilla/builds/hg.mozilla.org/mozilla-central-test/testing/sisyphus/xpi}
|
||||
TEST_MOZILLA_HG=${TEST_MOZILLA_HG:-http://hg.mozilla.org/mozilla-central}
|
||||
TEST_MOZILLA_HG_REV=${TEST_MOZILLA_HG_REV:-tip}
|
||||
10
mozilla/testing/sisyphus/data/fennec,1.9.2,opt.data
Normal file
10
mozilla/testing/sisyphus/data/fennec,1.9.2,opt.data
Normal file
@@ -0,0 +1,10 @@
|
||||
product=${product:-fennec}
|
||||
branch=${branch:-1.9.2}
|
||||
buildtype=${buildtype:-opt}
|
||||
profilename=${profilename:-fennec-1.9.2-profile}
|
||||
profiledirectory=${profiledirectory:-/tmp/fennec-1.9.2-profile}
|
||||
executablepath=${executablepath:-/work/mozilla/builds/1.9.2/mozilla/fennec-opt/mobile/dist}
|
||||
userpreferences=${userpreferences:-/work/mozilla/builds/hg.mozilla.org/mozilla-central-test/testing/sisyphus/prefs/test-user.js}
|
||||
extensiondir=${extensiondir:-/work/mozilla/builds/hg.mozilla.org/mozilla-central-test/testing/sisyphus/xpi}
|
||||
TEST_MOZILLA_HG=${TEST_MOZILLA_HG:-http://hg.mozilla.org/mozilla-central}
|
||||
TEST_MOZILLA_HG_REV=${TEST_MOZILLA_HG_REV:-tip}
|
||||
10
mozilla/testing/sisyphus/data/fennec,1.9.2-test,debug.data
Normal file
10
mozilla/testing/sisyphus/data/fennec,1.9.2-test,debug.data
Normal file
@@ -0,0 +1,10 @@
|
||||
product=${product:-fennec}
|
||||
branch=${branch:-1.9.2}
|
||||
buildtype=${buildtype:-debug}
|
||||
profilename=${profilename:-fennec-1.9.2-test-profile}
|
||||
profiledirectory=${profiledirectory:-/tmp/fennec-1.9.2-test-profile}
|
||||
executablepath=${executablepath:-/work/mozilla/builds/1.9.2-test/mozilla/fennec-debug/mobile/dist}
|
||||
userpreferences=${userpreferences:-/work/mozilla/builds/hg.mozilla.org/mozilla-central-test/testing/sisyphus/prefs/test-user.js}
|
||||
extensiondir=${extensiondir:-/work/mozilla/builds/hg.mozilla.org/mozilla-central-test/testing/sisyphus/xpi}
|
||||
TEST_MOZILLA_HG=${TEST_MOZILLA_HG:-http://hg.mozilla.org/mozilla-central}
|
||||
TEST_MOZILLA_HG_REV=${TEST_MOZILLA_HG_REV:-tip}
|
||||
10
mozilla/testing/sisyphus/data/fennec,1.9.2-test,opt.data
Normal file
10
mozilla/testing/sisyphus/data/fennec,1.9.2-test,opt.data
Normal file
@@ -0,0 +1,10 @@
|
||||
product=${product:-fennec}
|
||||
branch=${branch:-1.9.2}
|
||||
buildtype=${buildtype:-opt}
|
||||
profilename=${profilename:-fennec-1.9.2-test-profile}
|
||||
profiledirectory=${profiledirectory:-/tmp/fennec-1.9.2-test-profile}
|
||||
executablepath=${executablepath:-/work/mozilla/builds/1.9.2-test/mozilla/fennec-opt/mobile/dist}
|
||||
userpreferences=${userpreferences:-/work/mozilla/builds/hg.mozilla.org/mozilla-central-test/testing/sisyphus/prefs/test-user.js}
|
||||
extensiondir=${extensiondir:-/work/mozilla/builds/hg.mozilla.org/mozilla-central-test/testing/sisyphus/xpi}
|
||||
TEST_MOZILLA_HG=${TEST_MOZILLA_HG:-http://hg.mozilla.org/mozilla-central}
|
||||
TEST_MOZILLA_HG_REV=${TEST_MOZILLA_HG_REV:-tip}
|
||||
@@ -1,8 +1,8 @@
|
||||
product=firefox
|
||||
branch=1.8.0
|
||||
profilename=firefox-1.8.0-profile
|
||||
profiledirectory=/tmp/firefox-1.8.0-profile
|
||||
executablepath=${BUILDDIR}/1.8.0/mozilla/firefox-debug/dist
|
||||
userpreferences=${TEST_DIR}/prefs/test-user.js
|
||||
extensiondir=${TEST_DIR}/xpi
|
||||
buildtype=debug
|
||||
product=${product:-firefox}
|
||||
branch=${branch:-1.8.0}
|
||||
buildtype=${buildtype:-debug}
|
||||
profilename=${profilename:-firefox-1.8.0-profile}
|
||||
profiledirectory=${profiledirectory:-/tmp/firefox-1.8.0-profile}
|
||||
executablepath=${executablepath:-/work/mozilla/builds/1.8.0/mozilla/firefox-debug/dist}
|
||||
userpreferences=${userpreferences:-/work/mozilla/mozilla.com/test.mozilla.com/www/prefs/test-user.js}
|
||||
extensiondir=${extensiondir:-/work/mozilla/mozilla.com/test.mozilla.com/www/xpi}
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
product=firefox
|
||||
branch=1.8.0
|
||||
profilename=firefox-1.8.0-profile
|
||||
profiledirectory=/tmp/firefox-1.8.0-profile
|
||||
executablepath=${BUILDDIR}/1.8.0/mozilla/firefox-opt/dist
|
||||
userpreferences=${TEST_DIR}/prefs/test-user.js
|
||||
extensiondir=${TEST_DIR}/xpi
|
||||
buildtype=opt
|
||||
product=${product:-firefox}
|
||||
branch=${branch:-1.8.0}
|
||||
buildtype=${buildtype:-opt}
|
||||
profilename=${profilename:-firefox-1.8.0-profile}
|
||||
profiledirectory=${profiledirectory:-/tmp/firefox-1.8.0-profile}
|
||||
executablepath=${executablepath:-/work/mozilla/builds/1.8.0/mozilla/firefox-opt/dist}
|
||||
userpreferences=${userpreferences:-/work/mozilla/mozilla.com/test.mozilla.com/www/prefs/test-user.js}
|
||||
extensiondir=${extensiondir:-/work/mozilla/mozilla.com/test.mozilla.com/www/xpi}
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
product=firefox
|
||||
branch=1.8.0
|
||||
profilename=firefox-1.8.0-test-profile
|
||||
profiledirectory=/tmp/firefox-1.8.0-test-profile
|
||||
executablepath=${BUILDDIR}/1.8.0-test/mozilla/firefox-debug/dist
|
||||
userpreferences=${TEST_DIR}/prefs/test-user.js
|
||||
extensiondir=${TEST_DIR}/xpi
|
||||
buildtype=debug
|
||||
product=${product:-firefox}
|
||||
branch=${branch:-1.8.0}
|
||||
buildtype=${buildtype:-debug}
|
||||
profilename=${profilename:-firefox-1.8.0-test-profile}
|
||||
profiledirectory=${profiledirectory:-/tmp/firefox-1.8.0-test-profile}
|
||||
executablepath=${executablepath:-/work/mozilla/builds/1.8.0-test/mozilla/firefox-debug/dist}
|
||||
userpreferences=${userpreferences:-/work/mozilla/mozilla.com/test.mozilla.com/www/prefs/test-user.js}
|
||||
extensiondir=${extensiondir:-/work/mozilla/mozilla.com/test.mozilla.com/www/xpi}
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
product=firefox
|
||||
branch=1.8.0
|
||||
profilename=firefox-1.8.0-test-profile
|
||||
profiledirectory=/tmp/firefox-1.8.0-test-profile
|
||||
executablepath=${BUILDDIR}/1.8.0-test/mozilla/firefox-opt/dist
|
||||
userpreferences=${TEST_DIR}/prefs/test-user.js
|
||||
extensiondir=${TEST_DIR}/xpi
|
||||
buildtype=opt
|
||||
product=${product:-firefox}
|
||||
branch=${branch:-1.8.0}
|
||||
buildtype=${buildtype:-opt}
|
||||
profilename=${profilename:-firefox-1.8.0-test-profile}
|
||||
profiledirectory=${profiledirectory:-/tmp/firefox-1.8.0-test-profile}
|
||||
executablepath=${executablepath:-/work/mozilla/builds/1.8.0-test/mozilla/firefox-opt/dist}
|
||||
userpreferences=${userpreferences:-/work/mozilla/mozilla.com/test.mozilla.com/www/prefs/test-user.js}
|
||||
extensiondir=${extensiondir:-/work/mozilla/mozilla.com/test.mozilla.com/www/xpi}
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
product=${product:-firefox}
|
||||
branch=${branch:-1.8.0}
|
||||
buildtype=${buildtype:-debug}
|
||||
profilename=${profilename:-firefox-1.8.0-too-much-gc-profile}
|
||||
profiledirectory=${profiledirectory:-/tmp/firefox-1.8.0-too-much-gc-profile}
|
||||
executablepath=${executablepath:-/work/mozilla/builds/1.8.0-too-much-gc/mozilla/firefox-debug/dist}
|
||||
userpreferences=${userpreferences:-/work/mozilla/mozilla.com/test.mozilla.com/www/prefs/test-user.js}
|
||||
extensiondir=${extensiondir:-/work/mozilla/mozilla.com/test.mozilla.com/www/xpi}
|
||||
@@ -1,8 +1,8 @@
|
||||
product=firefox
|
||||
branch=1.8.1
|
||||
profilename=firefox-1.8.1-profile
|
||||
profiledirectory=/tmp/firefox-1.8.1-profile
|
||||
executablepath=${BUILDDIR}/1.8.1/mozilla/firefox-debug/dist
|
||||
userpreferences=${TEST_DIR}/prefs/test-user.js
|
||||
extensiondir=${TEST_DIR}/xpi
|
||||
buildtype=debug
|
||||
product=${product:-firefox}
|
||||
branch=${branch:-1.8.1}
|
||||
buildtype=${buildtype:-debug}
|
||||
profilename=${profilename:-firefox-1.8.1-profile}
|
||||
profiledirectory=${profiledirectory:-/tmp/firefox-1.8.1-profile}
|
||||
executablepath=${executablepath:-/work/mozilla/builds/1.8.1/mozilla/firefox-debug/dist}
|
||||
userpreferences=${userpreferences:-/work/mozilla/mozilla.com/test.mozilla.com/www/prefs/test-user.js}
|
||||
extensiondir=${extensiondir:-/work/mozilla/mozilla.com/test.mozilla.com/www/xpi}
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
product=firefox
|
||||
branch=1.8.1
|
||||
profilename=firefox-1.8.1-profile
|
||||
profiledirectory=/tmp/firefox-1.8.1-profile
|
||||
executablepath=${BUILDDIR}/1.8.1/mozilla/firefox-opt/dist
|
||||
userpreferences=${TEST_DIR}/prefs/test-user.js
|
||||
extensiondir=${TEST_DIR}/xpi
|
||||
buildtype=opt
|
||||
product=${product:-firefox}
|
||||
branch=${branch:-1.8.1}
|
||||
buildtype=${buildtype:-opt}
|
||||
profilename=${profilename:-firefox-1.8.1-profile}
|
||||
profiledirectory=${profiledirectory:-/tmp/firefox-1.8.1-profile}
|
||||
executablepath=${executablepath:-/work/mozilla/builds/1.8.1/mozilla/firefox-opt/dist}
|
||||
userpreferences=${userpreferences:-/work/mozilla/mozilla.com/test.mozilla.com/www/prefs/test-user.js}
|
||||
extensiondir=${extensiondir:-/work/mozilla/mozilla.com/test.mozilla.com/www/xpi}
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
product=firefox
|
||||
branch=1.8.1
|
||||
profilename=firefox-1.8.1-test-profile
|
||||
profiledirectory=/tmp/firefox-1.8.1-test-profile
|
||||
executablepath=${BUILDDIR}/1.8.1-test/mozilla/firefox-debug/dist
|
||||
userpreferences=${TEST_DIR}/prefs/test-user.js
|
||||
extensiondir=${TEST_DIR}/xpi
|
||||
buildtype=debug
|
||||
product=${product:-firefox}
|
||||
branch=${branch:-1.8.1}
|
||||
buildtype=${buildtype:-debug}
|
||||
profilename=${profilename:-firefox-1.8.1-test-profile}
|
||||
profiledirectory=${profiledirectory:-/tmp/firefox-1.8.1-test-profile}
|
||||
executablepath=${executablepath:-/work/mozilla/builds/1.8.1-test/mozilla/firefox-debug/dist}
|
||||
userpreferences=${userpreferences:-/work/mozilla/mozilla.com/test.mozilla.com/www/prefs/test-user.js}
|
||||
extensiondir=${extensiondir:-/work/mozilla/mozilla.com/test.mozilla.com/www/xpi}
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
product=firefox
|
||||
branch=1.8.1
|
||||
profilename=firefox-1.8.1-test-profile
|
||||
profiledirectory=/tmp/firefox-1.8.1-test-profile
|
||||
executablepath=${BUILDDIR}/1.8.1-test/mozilla/firefox-opt/dist
|
||||
userpreferences=${TEST_DIR}/prefs/test-user.js
|
||||
extensiondir=${TEST_DIR}/xpi
|
||||
buildtype=opt
|
||||
product=${product:-firefox}
|
||||
branch=${branch:-1.8.1}
|
||||
buildtype=${buildtype:-opt}
|
||||
profilename=${profilename:-firefox-1.8.1-test-profile}
|
||||
profiledirectory=${profiledirectory:-/tmp/firefox-1.8.1-test-profile}
|
||||
executablepath=${executablepath:-/work/mozilla/builds/1.8.1-test/mozilla/firefox-opt/dist}
|
||||
userpreferences=${userpreferences:-/work/mozilla/mozilla.com/test.mozilla.com/www/prefs/test-user.js}
|
||||
extensiondir=${extensiondir:-/work/mozilla/mozilla.com/test.mozilla.com/www/xpi}
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
product=firefox
|
||||
branch=1.8.1
|
||||
profilename=firefox-1.8.1-too-much-gc-profile
|
||||
profiledirectory=/tmp/firefox-1.8.1-too-much-gc-profile
|
||||
executablepath=${BUILDDIR}/1.8.1-too-much-gc/mozilla/firefox-debug/dist
|
||||
userpreferences=${TEST_DIR}/prefs/test-user.js
|
||||
extensiondir=${TEST_DIR}/xpi
|
||||
buildtype=debug
|
||||
product=${product:-firefox}
|
||||
branch=${branch:-1.8.1}
|
||||
buildtype=${buildtype:-debug}
|
||||
profilename=${profilename:-firefox-1.8.1-too-much-gc-profile}
|
||||
profiledirectory=${profiledirectory:-/tmp/firefox-1.8.1-too-much-gc-profile}
|
||||
executablepath=${executablepath:-/work/mozilla/builds/1.8.1-too-much-gc/mozilla/firefox-debug/dist}
|
||||
userpreferences=${userpreferences:-/work/mozilla/mozilla.com/test.mozilla.com/www/prefs/test-user.js}
|
||||
extensiondir=${extensiondir:-/work/mozilla/mozilla.com/test.mozilla.com/www/xpi}
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
product=firefox
|
||||
branch=1.9.0
|
||||
profilename=firefox-1.9.0-profile
|
||||
profiledirectory=/tmp/firefox-1.9.0-profile
|
||||
executablepath=${BUILDDIR}/1.9.0/mozilla/firefox-debug/dist
|
||||
userpreferences=${TEST_DIR}/prefs/test-user.js
|
||||
extensiondir=${TEST_DIR}/xpi
|
||||
buildtype=debug
|
||||
product=${product:-firefox}
|
||||
branch=${branch:-1.9.0}
|
||||
buildtype=${buildtype:-debug}
|
||||
profilename=${profilename:-firefox-1.9.0-profile}
|
||||
profiledirectory=${profiledirectory:-/tmp/firefox-1.9.0-profile}
|
||||
executablepath=${executablepath:-/work/mozilla/builds/1.9.0/mozilla/firefox-debug/dist}
|
||||
userpreferences=${userpreferences:-/work/mozilla/mozilla.com/test.mozilla.com/www/prefs/test-user.js}
|
||||
extensiondir=${extensiondir:-/work/mozilla/mozilla.com/test.mozilla.com/www/xpi}
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
product=firefox
|
||||
branch=1.9.0
|
||||
profilename=firefox-1.9.0-profile
|
||||
profiledirectory=/tmp/firefox-1.9.0-profile
|
||||
executablepath=${BUILDDIR}/1.9.0/mozilla/firefox-opt/dist
|
||||
userpreferences=${TEST_DIR}/prefs/test-user.js
|
||||
extensiondir=${TEST_DIR}/xpi
|
||||
buildtype=opt
|
||||
product=${product:-firefox}
|
||||
branch=${branch:-1.9.0}
|
||||
buildtype=${buildtype:-opt}
|
||||
profilename=${profilename:-firefox-1.9.0-profile}
|
||||
profiledirectory=${profiledirectory:-/tmp/firefox-1.9.0-profile}
|
||||
executablepath=${executablepath:-/work/mozilla/builds/1.9.0/mozilla/firefox-opt/dist}
|
||||
userpreferences=${userpreferences:-/work/mozilla/mozilla.com/test.mozilla.com/www/prefs/test-user.js}
|
||||
extensiondir=${extensiondir:-/work/mozilla/mozilla.com/test.mozilla.com/www/xpi}
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
product=firefox
|
||||
branch=1.9.0
|
||||
profilename=firefox-1.9.0-gcov-profile
|
||||
profiledirectory=/tmp/firefox-1.9.0-gcov-profile
|
||||
executablepath=${BUILDDIR}/1.9.0-gcov/mozilla/firefox-debug/dist
|
||||
userpreferences=${TEST_DIR}/prefs/test-user.js
|
||||
extensiondir=${TEST_DIR}/xpi
|
||||
buildtype=debug
|
||||
product=${product:-firefox}
|
||||
branch=${branch:-1.9.0}
|
||||
buildtype=${buildtype:-debug}
|
||||
profilename=${profilename:-firefox-1.9.0-gcov-profile}
|
||||
profiledirectory=${profiledirectory:-/tmp/firefox-1.9.0-gcov-profile}
|
||||
executablepath=${executablepath:-/work/mozilla/builds/1.9.0-gcov/mozilla/firefox-debug/dist}
|
||||
userpreferences=${userpreferences:-/work/mozilla/builds/hg.mozilla.org/mozilla-central-test/testing/sisyphus/prefs/test-user.js}
|
||||
extensiondir=${extensiondir:-/work/mozilla/builds/hg.mozilla.org/mozilla-central-test/testing/sisyphus/xpi}
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
product=firefox
|
||||
branch=1.9.0
|
||||
profilename=firefox-1.9.0-gcov-profile
|
||||
profiledirectory=/tmp/firefox-1.9.0-gcov-profile
|
||||
executablepath=${BUILDDIR}/1.9.0-gcov/mozilla/firefox-opt/dist
|
||||
userpreferences=${TEST_DIR}/prefs/test-user.js
|
||||
extensiondir=${TEST_DIR}/xpi
|
||||
buildtype=opt
|
||||
product=${product:-firefox}
|
||||
branch=${branch:-1.9.0}
|
||||
buildtype=${buildtype:-opt}
|
||||
profilename=${profilename:-firefox-1.9.0-gcov-profile}
|
||||
profiledirectory=${profiledirectory:-/tmp/firefox-1.9.0-gcov-profile}
|
||||
executablepath=${executablepath:-/work/mozilla/builds/1.9.0-gcov/mozilla/firefox-opt/dist}
|
||||
userpreferences=${userpreferences:-/work/mozilla/builds/hg.mozilla.org/mozilla-central-test/testing/sisyphus/prefs/test-user.js}
|
||||
extensiondir=${extensiondir:-/work/mozilla/builds/hg.mozilla.org/mozilla-central-test/testing/sisyphus/xpi}
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
product=firefox
|
||||
branch=1.9.0
|
||||
profilename=firefox-1.9.0-jemalloc-profile
|
||||
profiledirectory=/tmp/firefox-1.9.0-jemalloc-profile
|
||||
executablepath=${BUILDDIR}/1.9.0-jemalloc/mozilla/firefox-debug/dist
|
||||
userpreferences=${TEST_DIR}/prefs/test-user.js
|
||||
extensiondir=${TEST_DIR}/xpi
|
||||
buildtype=debug
|
||||
product=${product:-firefox}
|
||||
branch=${branch:-1.9.0}
|
||||
buildtype=${buildtype:-debug}
|
||||
profilename=${profilename:-firefox-1.9.0-jemalloc-profile}
|
||||
profiledirectory=${profiledirectory:-/tmp/firefox-1.9.0-jemalloc-profile}
|
||||
executablepath=${executablepath:-/work/mozilla/builds/1.9.0-jemalloc/mozilla/firefox-debug/dist}
|
||||
userpreferences=${userpreferences:-/work/mozilla/builds/hg.mozilla.org/mozilla-central-test/testing/sisyphus/prefs/test-user.js}
|
||||
extensiondir=${extensiondir:-/work/mozilla/builds/hg.mozilla.org/mozilla-central-test/testing/sisyphus/xpi}
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
product=firefox
|
||||
branch=1.9.0
|
||||
profilename=firefox-1.9.0-jemalloc-profile
|
||||
profiledirectory=/tmp/firefox-1.9.0-jemalloc-profile
|
||||
executablepath=${BUILDDIR}/1.9.0-jemalloc/mozilla/firefox-opt/dist
|
||||
userpreferences=${TEST_DIR}/prefs/test-user.js
|
||||
extensiondir=${TEST_DIR}/xpi
|
||||
buildtype=opt
|
||||
product=${product:-firefox}
|
||||
branch=${branch:-1.9.0}
|
||||
buildtype=${buildtype:-opt}
|
||||
profilename=${profilename:-firefox-1.9.0-jemalloc-profile}
|
||||
profiledirectory=${profiledirectory:-/tmp/firefox-1.9.0-jemalloc-profile}
|
||||
executablepath=${executablepath:-/work/mozilla/builds/1.9.0-jemalloc/mozilla/firefox-opt/dist}
|
||||
userpreferences=${userpreferences:-/work/mozilla/builds/hg.mozilla.org/mozilla-central-test/testing/sisyphus/prefs/test-user.js}
|
||||
extensiondir=${extensiondir:-/work/mozilla/builds/hg.mozilla.org/mozilla-central-test/testing/sisyphus/xpi}
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
product=firefox
|
||||
branch=1.9.0
|
||||
profilename=firefox-1.9.0-jemalloc-test-profile
|
||||
profiledirectory=/tmp/firefox-1.9.0-jemalloc-test-profile
|
||||
executablepath=${BUILDDIR}/1.9.0-jemalloc-test/mozilla/firefox-debug/dist
|
||||
userpreferences=${TEST_DIR}/prefs/test-user.js
|
||||
extensiondir=${TEST_DIR}/xpi
|
||||
buildtype=debug
|
||||
product=${product:-firefox}
|
||||
branch=${branch:-1.9.0}
|
||||
buildtype=${buildtype:-debug}
|
||||
profilename=${profilename:-firefox-1.9.0-jemalloc-test-profile}
|
||||
profiledirectory=${profiledirectory:-/tmp/firefox-1.9.0-jemalloc-test-profile}
|
||||
executablepath=${executablepath:-/work/mozilla/builds/1.9.0-jemalloc-test/mozilla/firefox-debug/dist}
|
||||
userpreferences=${userpreferences:-/work/mozilla/builds/hg.mozilla.org/mozilla-central-test/testing/sisyphus/prefs/test-user.js}
|
||||
extensiondir=${extensiondir:-/work/mozilla/builds/hg.mozilla.org/mozilla-central-test/testing/sisyphus/xpi}
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
product=firefox
|
||||
branch=1.9.0
|
||||
profilename=firefox-1.9.0-jemalloc-test-profile
|
||||
profiledirectory=/tmp/firefox-1.9.0-jemalloc-test-profile
|
||||
executablepath=${BUILDDIR}/1.9.0-jemalloc-test/mozilla/firefox-opt/dist
|
||||
userpreferences=${TEST_DIR}/prefs/test-user.js
|
||||
extensiondir=${TEST_DIR}/xpi
|
||||
buildtype=opt
|
||||
product=${product:-firefox}
|
||||
branch=${branch:-1.9.0}
|
||||
buildtype=${buildtype:-opt}
|
||||
profilename=${profilename:-firefox-1.9.0-jemalloc-test-profile}
|
||||
profiledirectory=${profiledirectory:-/tmp/firefox-1.9.0-jemalloc-test-profile}
|
||||
executablepath=${executablepath:-/work/mozilla/builds/1.9.0-jemalloc-test/mozilla/firefox-opt/dist}
|
||||
userpreferences=${userpreferences:-/work/mozilla/builds/hg.mozilla.org/mozilla-central-test/testing/sisyphus/prefs/test-user.js}
|
||||
extensiondir=${extensiondir:-/work/mozilla/builds/hg.mozilla.org/mozilla-central-test/testing/sisyphus/xpi}
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
product=firefox
|
||||
branch=1.9.0
|
||||
profilename=firefox-1.9.0-jprof-profile
|
||||
profiledirectory=/tmp/firefox-1.9.0-jprof-profile
|
||||
executablepath=${BUILDDIR}/1.9.0-jprof/mozilla/firefox-debug/dist
|
||||
userpreferences=${TEST_DIR}/prefs/test-user.js
|
||||
extensiondir=${TEST_DIR}/xpi
|
||||
buildtype=debug
|
||||
product=${product:-firefox}
|
||||
branch=${branch:-1.9.0}
|
||||
buildtype=${buildtype:-debug}
|
||||
profilename=${profilename:-firefox-1.9.0-jprof-profile}
|
||||
profiledirectory=${profiledirectory:-/tmp/firefox-1.9.0-jprof-profile}
|
||||
executablepath=${executablepath:-/work/mozilla/builds/1.9.0-jprof/mozilla/firefox-debug/dist}
|
||||
userpreferences=${userpreferences:-/work/mozilla/builds/hg.mozilla.org/mozilla-central-test/testing/sisyphus/prefs/test-user.js}
|
||||
extensiondir=${extensiondir:-/work/mozilla/builds/hg.mozilla.org/mozilla-central-test/testing/sisyphus/xpi}
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
product=firefox
|
||||
branch=1.9.0
|
||||
profilename=firefox-1.9.0-jprof-profile
|
||||
profiledirectory=/tmp/firefox-1.9.0-jprof-profile
|
||||
executablepath=${BUILDDIR}/1.9.0-jprof/mozilla/firefox-opt/dist
|
||||
userpreferences=${TEST_DIR}/prefs/test-user.js
|
||||
extensiondir=${TEST_DIR}/xpi
|
||||
buildtype=opt
|
||||
product=${product:-firefox}
|
||||
branch=${branch:-1.9.0}
|
||||
buildtype=${buildtype:-opt}
|
||||
profilename=${profilename:-firefox-1.9.0-jprof-profile}
|
||||
profiledirectory=${profiledirectory:-/tmp/firefox-1.9.0-jprof-profile}
|
||||
executablepath=${executablepath:-/work/mozilla/builds/1.9.0-jprof/mozilla/firefox-opt/dist}
|
||||
userpreferences=${userpreferences:-/work/mozilla/builds/hg.mozilla.org/mozilla-central-test/testing/sisyphus/prefs/test-user.js}
|
||||
extensiondir=${extensiondir:-/work/mozilla/builds/hg.mozilla.org/mozilla-central-test/testing/sisyphus/xpi}
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
product=firefox
|
||||
branch=1.9.0
|
||||
profilename=firefox-1.9.0-test-profile
|
||||
profiledirectory=/tmp/firefox-1.9.0-test-profile
|
||||
executablepath=${BUILDDIR}/1.9.0-test/mozilla/firefox-debug/dist
|
||||
userpreferences=${TEST_DIR}/prefs/test-user.js
|
||||
extensiondir=${TEST_DIR}/xpi
|
||||
buildtype=debug
|
||||
product=${product:-firefox}
|
||||
branch=${branch:-1.9.0}
|
||||
buildtype=${buildtype:-debug}
|
||||
profilename=${profilename:-firefox-1.9.0-test-profile}
|
||||
profiledirectory=${profiledirectory:-/tmp/firefox-1.9.0-test-profile}
|
||||
executablepath=${executablepath:-/work/mozilla/builds/1.9.0-test/mozilla/firefox-debug/dist}
|
||||
userpreferences=${userpreferences:-/work/mozilla/mozilla.com/test.mozilla.com/www/prefs/test-user.js}
|
||||
extensiondir=${extensiondir:-/work/mozilla/mozilla.com/test.mozilla.com/www/xpi}
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
product=firefox
|
||||
branch=1.9.0
|
||||
profilename=firefox-1.9.0-test-profile
|
||||
profiledirectory=/tmp/firefox-1.9.0-test-profile
|
||||
executablepath=${BUILDDIR}/1.9.0-test/mozilla/firefox-opt/dist
|
||||
userpreferences=${TEST_DIR}/prefs/test-user.js
|
||||
extensiondir=${TEST_DIR}/xpi
|
||||
buildtype=opt
|
||||
product=${product:-firefox}
|
||||
branch=${branch:-1.9.0}
|
||||
buildtype=${buildtype:-opt}
|
||||
profilename=${profilename:-firefox-1.9.0-test-profile}
|
||||
profiledirectory=${profiledirectory:-/tmp/firefox-1.9.0-test-profile}
|
||||
executablepath=${executablepath:-/work/mozilla/builds/1.9.0-test/mozilla/firefox-opt/dist}
|
||||
userpreferences=${userpreferences:-/work/mozilla/mozilla.com/test.mozilla.com/www/prefs/test-user.js}
|
||||
extensiondir=${extensiondir:-/work/mozilla/mozilla.com/test.mozilla.com/www/xpi}
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
product=firefox
|
||||
branch=1.9.0
|
||||
profilename=firefox-1.9.0-too-much-gc-profile
|
||||
profiledirectory=/tmp/firefox-1.9.0-too-much-gc-profile
|
||||
executablepath=${BUILDDIR}/1.9.0-too-much-gc/mozilla/firefox-debug/dist
|
||||
userpreferences=${TEST_DIR}/prefs/test-user.js
|
||||
extensiondir=${TEST_DIR}/xpi
|
||||
buildtype=debug
|
||||
product=${product:-firefox}
|
||||
branch=${branch:-1.9.0}
|
||||
buildtype=${buildtype:-debug}
|
||||
profilename=${profilename:-firefox-1.9.0-too-much-gc-profile}
|
||||
profiledirectory=${profiledirectory:-/tmp/firefox-1.9.0-too-much-gc-profile}
|
||||
executablepath=${executablepath:-/work/mozilla/builds/1.9.0-too-much-gc/mozilla/firefox-debug/dist}
|
||||
userpreferences=${userpreferences:-/work/mozilla/mozilla.com/test.mozilla.com/www/prefs/test-user.js}
|
||||
extensiondir=${extensiondir:-/work/mozilla/mozilla.com/test.mozilla.com/www/xpi}
|
||||
|
||||
@@ -1,9 +1,10 @@
|
||||
product=firefox
|
||||
branch=1.9.1
|
||||
profilename=firefox-1.9.1-profile
|
||||
profiledirectory=/tmp/firefox-1.9.1-profile
|
||||
executablepath=${BUILDDIR}/1.9.1/mozilla/firefox-debug/dist
|
||||
userpreferences=${TEST_DIR}/prefs/test-user.js
|
||||
extensiondir=${TEST_DIR}/xpi
|
||||
buildtype=debug
|
||||
TEST_MOZILLA_HG=http://hg.mozilla.org/mozilla-central
|
||||
product=${product:-firefox}
|
||||
branch=${branch:-1.9.1}
|
||||
buildtype=${buildtype:-debug}
|
||||
profilename=${profilename:-firefox-1.9.1-profile}
|
||||
profiledirectory=${profiledirectory:-/tmp/firefox-1.9.1-profile}
|
||||
executablepath=${executablepath:-/work/mozilla/builds/1.9.1/mozilla/firefox-debug/dist}
|
||||
userpreferences=${userpreferences:-/work/mozilla/mozilla.com/test.mozilla.com/www/prefs/test-user.js}
|
||||
extensiondir=${extensiondir:-/work/mozilla/mozilla.com/test.mozilla.com/www/xpi}
|
||||
TEST_MOZILLA_HG=${TEST_MOZILLA_HG:-http://hg.mozilla.org/releases/mozilla-1.9.1}
|
||||
TEST_MOZILLA_HG_REV=${TEST_MOZILLA_HG_REV:-tip}
|
||||
|
||||
@@ -1,9 +1,10 @@
|
||||
product=firefox
|
||||
branch=1.9.1
|
||||
profilename=firefox-1.9.1-profile
|
||||
profiledirectory=/tmp/firefox-1.9.1-profile
|
||||
executablepath=${BUILDDIR}/1.9.1/mozilla/firefox-opt/dist
|
||||
userpreferences=${TEST_DIR}/prefs/test-user.js
|
||||
extensiondir=${TEST_DIR}/xpi
|
||||
buildtype=opt
|
||||
TEST_MOZILLA_HG=http://hg.mozilla.org/mozilla-central
|
||||
product=${product:-firefox}
|
||||
branch=${branch:-1.9.1}
|
||||
buildtype=${buildtype:-opt}
|
||||
profilename=${profilename:-firefox-1.9.1-profile}
|
||||
profiledirectory=${profiledirectory:-/tmp/firefox-1.9.1-profile}
|
||||
executablepath=${executablepath:-/work/mozilla/builds/1.9.1/mozilla/firefox-opt/dist}
|
||||
userpreferences=${userpreferences:-/work/mozilla/mozilla.com/test.mozilla.com/www/prefs/test-user.js}
|
||||
extensiondir=${extensiondir:-/work/mozilla/mozilla.com/test.mozilla.com/www/xpi}
|
||||
TEST_MOZILLA_HG=${TEST_MOZILLA_HG:-http://hg.mozilla.org/releases/mozilla-1.9.1}
|
||||
TEST_MOZILLA_HG_REV=${TEST_MOZILLA_HG_REV:-tip}
|
||||
|
||||
@@ -1,9 +1,10 @@
|
||||
product=firefox
|
||||
branch=1.9.1
|
||||
profilename=firefox-1.9.1-actionmonkey-profile
|
||||
profiledirectory=/tmp/firefox-1.9.1-actionmonkey-profile
|
||||
executablepath=${BUILDDIR}/1.9.1-actionmonkey/mozilla/firefox-debug/dist
|
||||
userpreferences=${TEST_DIR}/prefs/test-user.js
|
||||
extensiondir=${TEST_DIR}/xpi
|
||||
buildtype=debug
|
||||
TEST_MOZILLA_HG=http://hg.mozilla.org/actionmonkey
|
||||
product=${product:-firefox}
|
||||
branch=${branch:-1.9.1}
|
||||
buildtype=${buildtype:-debug}
|
||||
profilename=${profilename:-firefox-1.9.1-actionmonkey-profile}
|
||||
profiledirectory=${profiledirectory:-/tmp/firefox-1.9.1-actionmonkey-profile}
|
||||
executablepath=${executablepath:-/work/mozilla/builds/1.9.1-actionmonkey/mozilla/firefox-debug/dist}
|
||||
userpreferences=${userpreferences:-/work/mozilla/builds/hg.mozilla.org/mozilla-central-test/testing/sisyphus/prefs/test-user.js}
|
||||
extensiondir=${extensiondir:-/work/mozilla/builds/hg.mozilla.org/mozilla-central-test/testing/sisyphus/xpi}
|
||||
TEST_MOZILLA_HG=${TEST_MOZILLA_HG:-http://hg.mozilla.org/actionmonkey}
|
||||
TEST_MOZILLA_HG_REV=${TEST_MOZILLA_HG_REV:-tip}
|
||||
|
||||
@@ -1,9 +1,10 @@
|
||||
product=firefox
|
||||
branch=1.9.1
|
||||
profilename=firefox-1.9.1-actionmonkey-profile
|
||||
profiledirectory=/tmp/firefox-1.9.1-actionmonkey-profile
|
||||
executablepath=${BUILDDIR}/1.9.1-actionmonkey/mozilla/firefox-opt/dist
|
||||
userpreferences=${TEST_DIR}/prefs/test-user.js
|
||||
extensiondir=${TEST_DIR}/xpi
|
||||
buildtype=opt
|
||||
TEST_MOZILLA_HG=http://hg.mozilla.org/actionmonkey
|
||||
product=${product:-firefox}
|
||||
branch=${branch:-1.9.1}
|
||||
buildtype=${buildtype:-opt}
|
||||
profilename=${profilename:-firefox-1.9.1-actionmonkey-profile}
|
||||
profiledirectory=${profiledirectory:-/tmp/firefox-1.9.1-actionmonkey-profile}
|
||||
executablepath=${executablepath:-/work/mozilla/builds/1.9.1-actionmonkey/mozilla/firefox-opt/dist}
|
||||
userpreferences=${userpreferences:-/work/mozilla/builds/hg.mozilla.org/mozilla-central-test/testing/sisyphus/prefs/test-user.js}
|
||||
extensiondir=${extensiondir:-/work/mozilla/builds/hg.mozilla.org/mozilla-central-test/testing/sisyphus/xpi}
|
||||
TEST_MOZILLA_HG=${TEST_MOZILLA_HG:-http://hg.mozilla.org/actionmonkey}
|
||||
TEST_MOZILLA_HG_REV=${TEST_MOZILLA_HG_REV:-tip}
|
||||
|
||||
@@ -1,9 +1,10 @@
|
||||
product=firefox
|
||||
branch=1.9.1
|
||||
profilename=firefox-1.9.1-jemalloc-profile
|
||||
profiledirectory=/tmp/firefox-1.9.1-jemalloc-profile
|
||||
executablepath=${BUILDDIR}/1.9.1-jemalloc/mozilla/firefox-debug/dist
|
||||
userpreferences=${TEST_DIR}/prefs/test-user.js
|
||||
extensiondir=${TEST_DIR}/xpi
|
||||
buildtype=debug
|
||||
TEST_MOZILLA_HG=http://hg.mozilla.org/mozilla-central
|
||||
product=${product:-firefox}
|
||||
branch=${branch:-1.9.1}
|
||||
buildtype=${buildtype:-debug}
|
||||
profilename=${profilename:-firefox-1.9.1-jemalloc-profile}
|
||||
profiledirectory=${profiledirectory:-/tmp/firefox-1.9.1-jemalloc-profile}
|
||||
executablepath=${executablepath:-/work/mozilla/builds/1.9.1-jemalloc/mozilla/firefox-debug/dist}
|
||||
userpreferences=${userpreferences:-/work/mozilla/builds/hg.mozilla.org/mozilla-central-test/testing/sisyphus/prefs/test-user.js}
|
||||
extensiondir=${extensiondir:-/work/mozilla/builds/hg.mozilla.org/mozilla-central-test/testing/sisyphus/xpi}
|
||||
TEST_MOZILLA_HG=${TEST_MOZILLA_HG:-http://hg.mozilla.org/releases/mozilla-1.9.1}
|
||||
TEST_MOZILLA_HG_REV=${TEST_MOZILLA_HG_REV:-tip}
|
||||
|
||||
@@ -1,9 +1,10 @@
|
||||
product=firefox
|
||||
branch=1.9.1
|
||||
profilename=firefox-1.9.1-jemalloc-profile
|
||||
profiledirectory=/tmp/firefox-1.9.1-jemalloc-profile
|
||||
executablepath=${BUILDDIR}/1.9.1-jemalloc/mozilla/firefox-opt/dist
|
||||
userpreferences=${TEST_DIR}/prefs/test-user.js
|
||||
extensiondir=${TEST_DIR}/xpi
|
||||
buildtype=opt
|
||||
TEST_MOZILLA_HG=http://hg.mozilla.org/mozilla-central
|
||||
product=${product:-firefox}
|
||||
branch=${branch:-1.9.1}
|
||||
buildtype=${buildtype:-opt}
|
||||
profilename=${profilename:-firefox-1.9.1-jemalloc-profile}
|
||||
profiledirectory=${profiledirectory:-/tmp/firefox-1.9.1-jemalloc-profile}
|
||||
executablepath=${executablepath:-/work/mozilla/builds/1.9.1-jemalloc/mozilla/firefox-opt/dist}
|
||||
userpreferences=${userpreferences:-/work/mozilla/builds/hg.mozilla.org/mozilla-central-test/testing/sisyphus/prefs/test-user.js}
|
||||
extensiondir=${extensiondir:-/work/mozilla/builds/hg.mozilla.org/mozilla-central-test/testing/sisyphus/xpi}
|
||||
TEST_MOZILLA_HG=${TEST_MOZILLA_HG:-http://hg.mozilla.org/releases/mozilla-1.9.1}
|
||||
TEST_MOZILLA_HG_REV=${TEST_MOZILLA_HG_REV:-tip}
|
||||
|
||||
@@ -1,9 +1,10 @@
|
||||
product=firefox
|
||||
branch=1.9.1
|
||||
profilename=firefox-1.9.1-jemalloc-test-profile
|
||||
profiledirectory=/tmp/firefox-1.9.1-jemalloc-test-profile
|
||||
executablepath=${BUILDDIR}/1.9.1-jemalloc-test/mozilla/firefox-debug/dist
|
||||
userpreferences=${TEST_DIR}/prefs/test-user.js
|
||||
extensiondir=${TEST_DIR}/xpi
|
||||
buildtype=debug
|
||||
TEST_MOZILLA_HG=http://hg.mozilla.org/mozilla-central
|
||||
product=${product:-firefox}
|
||||
branch=${branch:-1.9.1}
|
||||
buildtype=${buildtype:-debug}
|
||||
profilename=${profilename:-firefox-1.9.1-jemalloc-test-profile}
|
||||
profiledirectory=${profiledirectory:-/tmp/firefox-1.9.1-jemalloc-test-profile}
|
||||
executablepath=${executablepath:-/work/mozilla/builds/1.9.1-jemalloc-test/mozilla/firefox-debug/dist}
|
||||
userpreferences=${userpreferences:-/work/mozilla/builds/hg.mozilla.org/mozilla-central-test/testing/sisyphus/prefs/test-user.js}
|
||||
extensiondir=${extensiondir:-/work/mozilla/builds/hg.mozilla.org/mozilla-central-test/testing/sisyphus/xpi}
|
||||
TEST_MOZILLA_HG=${TEST_MOZILLA_HG:-http://hg.mozilla.org/releases/mozilla-1.9.1}
|
||||
TEST_MOZILLA_HG_REV=${TEST_MOZILLA_HG_REV:-tip}
|
||||
|
||||
@@ -1,9 +1,10 @@
|
||||
product=firefox
|
||||
branch=1.9.1
|
||||
profilename=firefox-1.9.1-jemalloc-test-profile
|
||||
profiledirectory=/tmp/firefox-1.9.1-jemalloc-test-profile
|
||||
executablepath=${BUILDDIR}/1.9.1-jemalloc-test/mozilla/firefox-opt/dist
|
||||
userpreferences=${TEST_DIR}/prefs/test-user.js
|
||||
extensiondir=${TEST_DIR}/xpi
|
||||
buildtype=opt
|
||||
TEST_MOZILLA_HG=http://hg.mozilla.org/mozilla-central
|
||||
product=${product:-firefox}
|
||||
branch=${branch:-1.9.1}
|
||||
buildtype=${buildtype:-opt}
|
||||
profilename=${profilename:-firefox-1.9.1-jemalloc-test-profile}
|
||||
profiledirectory=${profiledirectory:-/tmp/firefox-1.9.1-jemalloc-test-profile}
|
||||
executablepath=${executablepath:-/work/mozilla/builds/1.9.1-jemalloc-test/mozilla/firefox-opt/dist}
|
||||
userpreferences=${userpreferences:-/work/mozilla/builds/hg.mozilla.org/mozilla-central-test/testing/sisyphus/prefs/test-user.js}
|
||||
extensiondir=${extensiondir:-/work/mozilla/builds/hg.mozilla.org/mozilla-central-test/testing/sisyphus/xpi}
|
||||
TEST_MOZILLA_HG=${TEST_MOZILLA_HG:-http://hg.mozilla.org/releases/mozilla-1.9.1}
|
||||
TEST_MOZILLA_HG_REV=${TEST_MOZILLA_HG_REV:-tip}
|
||||
|
||||
@@ -1,9 +1,10 @@
|
||||
product=firefox
|
||||
branch=1.9.1
|
||||
profilename=firefox-1.9.1-jprof-profile
|
||||
profiledirectory=/tmp/firefox-1.9.1-jprof-profile
|
||||
executablepath=${BUILDDIR}/1.9.1-jprof/mozilla/firefox-debug/dist
|
||||
userpreferences=${TEST_DIR}/prefs/test-user.js
|
||||
extensiondir=${TEST_DIR}/xpi
|
||||
buildtype=debug
|
||||
TEST_MOZILLA_HG=http://hg.mozilla.org/mozilla-central
|
||||
product=${product:-firefox}
|
||||
branch=${branch:-1.9.1}
|
||||
buildtype=${buildtype:-debug}
|
||||
profilename=${profilename:-firefox-1.9.1-jprof-profile}
|
||||
profiledirectory=${profiledirectory:-/tmp/firefox-1.9.1-jprof-profile}
|
||||
executablepath=${executablepath:-/work/mozilla/builds/1.9.1-jprof/mozilla/firefox-debug/dist}
|
||||
userpreferences=${userpreferences:-/work/mozilla/builds/hg.mozilla.org/mozilla-central-test/testing/sisyphus/prefs/test-user.js}
|
||||
extensiondir=${extensiondir:-/work/mozilla/builds/hg.mozilla.org/mozilla-central-test/testing/sisyphus/xpi}
|
||||
TEST_MOZILLA_HG=${TEST_MOZILLA_HG:-http://hg.mozilla.org/releases/mozilla-1.9.1}
|
||||
TEST_MOZILLA_HG_REV=${TEST_MOZILLA_HG_REV:-tip}
|
||||
|
||||
@@ -1,9 +1,10 @@
|
||||
product=firefox
|
||||
branch=1.9.1
|
||||
profilename=firefox-1.9.1-jprof-profile
|
||||
profiledirectory=/tmp/firefox-1.9.1-jprof-profile
|
||||
executablepath=${BUILDDIR}/1.9.1-jprof/mozilla/firefox-opt/dist
|
||||
userpreferences=${TEST_DIR}/prefs/test-user.js
|
||||
extensiondir=${TEST_DIR}/xpi
|
||||
buildtype=opt
|
||||
TEST_MOZILLA_HG=http://hg.mozilla.org/mozilla-central
|
||||
product=${product:-firefox}
|
||||
branch=${branch:-1.9.1}
|
||||
buildtype=${buildtype:-opt}
|
||||
profilename=${profilename:-firefox-1.9.1-jprof-profile}
|
||||
profiledirectory=${profiledirectory:-/tmp/firefox-1.9.1-jprof-profile}
|
||||
executablepath=${executablepath:-/work/mozilla/builds/1.9.1-jprof/mozilla/firefox-opt/dist}
|
||||
userpreferences=${userpreferences:-/work/mozilla/builds/hg.mozilla.org/mozilla-central-test/testing/sisyphus/prefs/test-user.js}
|
||||
extensiondir=${extensiondir:-/work/mozilla/builds/hg.mozilla.org/mozilla-central-test/testing/sisyphus/xpi}
|
||||
TEST_MOZILLA_HG=${TEST_MOZILLA_HG:-http://hg.mozilla.org/releases/mozilla-1.9.1}
|
||||
TEST_MOZILLA_HG_REV=${TEST_MOZILLA_HG_REV:-tip}
|
||||
|
||||
@@ -1,9 +1,10 @@
|
||||
product=firefox
|
||||
branch=1.9.1
|
||||
profilename=firefox-1.9.1-test-profile
|
||||
profiledirectory=/tmp/firefox-1.9.1-test-profile
|
||||
executablepath=${BUILDDIR}/1.9.1-test/mozilla/firefox-debug/dist
|
||||
userpreferences=${TEST_DIR}/prefs/test-user.js
|
||||
extensiondir=${TEST_DIR}/xpi
|
||||
buildtype=debug
|
||||
TEST_MOZILLA_HG=http://hg.mozilla.org/mozilla-central
|
||||
product=${product:-firefox}
|
||||
branch=${branch:-1.9.1}
|
||||
buildtype=${buildtype:-debug}
|
||||
profilename=${profilename:-firefox-1.9.1-test-profile}
|
||||
profiledirectory=${profiledirectory:-/tmp/firefox-1.9.1-test-profile}
|
||||
executablepath=${executablepath:-/work/mozilla/builds/1.9.1-test/mozilla/firefox-debug/dist}
|
||||
userpreferences=${userpreferences:-/work/mozilla/mozilla.com/test.mozilla.com/www/prefs/test-user.js}
|
||||
extensiondir=${extensiondir:-/work/mozilla/mozilla.com/test.mozilla.com/www/xpi}
|
||||
TEST_MOZILLA_HG=${TEST_MOZILLA_HG:-http://hg.mozilla.org/releases/mozilla-1.9.1}
|
||||
TEST_MOZILLA_HG_REV=${TEST_MOZILLA_HG_REV:-tip}
|
||||
|
||||
@@ -1,9 +1,10 @@
|
||||
product=firefox
|
||||
branch=1.9.1
|
||||
profilename=firefox-1.9.1-test-profile
|
||||
profiledirectory=/tmp/firefox-1.9.1-test-profile
|
||||
executablepath=${BUILDDIR}/1.9.1-test/mozilla/firefox-opt/dist
|
||||
userpreferences=${TEST_DIR}/prefs/test-user.js
|
||||
extensiondir=${TEST_DIR}/xpi
|
||||
buildtype=opt
|
||||
TEST_MOZILLA_HG=http://hg.mozilla.org/mozilla-central
|
||||
product=${product:-firefox}
|
||||
branch=${branch:-1.9.1}
|
||||
buildtype=${buildtype:-opt}
|
||||
profilename=${profilename:-firefox-1.9.1-test-profile}
|
||||
profiledirectory=${profiledirectory:-/tmp/firefox-1.9.1-test-profile}
|
||||
executablepath=${executablepath:-/work/mozilla/builds/1.9.1-test/mozilla/firefox-opt/dist}
|
||||
userpreferences=${userpreferences:-/work/mozilla/mozilla.com/test.mozilla.com/www/prefs/test-user.js}
|
||||
extensiondir=${extensiondir:-/work/mozilla/mozilla.com/test.mozilla.com/www/xpi}
|
||||
TEST_MOZILLA_HG=${TEST_MOZILLA_HG:-http://hg.mozilla.org/releases/mozilla-1.9.1}
|
||||
TEST_MOZILLA_HG_REV=${TEST_MOZILLA_HG_REV:-tip}
|
||||
|
||||
@@ -1,9 +1,10 @@
|
||||
product=firefox
|
||||
branch=1.9.1
|
||||
profilename=firefox-1.9.1-too-much-gc-profile
|
||||
profiledirectory=/tmp/firefox-1.9.1-too-much-gc-profile
|
||||
executablepath=${BUILDDIR}/1.9.1-too-much-gc/mozilla/firefox-debug/dist
|
||||
userpreferences=${TEST_DIR}/prefs/test-user.js
|
||||
extensiondir=${TEST_DIR}/xpi
|
||||
buildtype=debug
|
||||
TEST_MOZILLA_HG=http://hg.mozilla.org/mozilla-central
|
||||
product=${product:-firefox}
|
||||
branch=${branch:-1.9.1}
|
||||
buildtype=${buildtype:-debug}
|
||||
profilename=${profilename:-firefox-1.9.1-too-much-gc-profile}
|
||||
profiledirectory=${profiledirectory:-/tmp/firefox-1.9.1-too-much-gc-profile}
|
||||
executablepath=${executablepath:-/work/mozilla/builds/1.9.1-too-much-gc/mozilla/firefox-debug/dist}
|
||||
userpreferences=${userpreferences:-/work/mozilla/mozilla.com/test.mozilla.com/www/prefs/test-user.js}
|
||||
extensiondir=${extensiondir:-/work/mozilla/mozilla.com/test.mozilla.com/www/xpi}
|
||||
TEST_MOZILLA_HG=${TEST_MOZILLA_HG:-http://hg.mozilla.org/releases/mozilla-1.9.1}
|
||||
TEST_MOZILLA_HG_REV=${TEST_MOZILLA_HG_REV:-tip}
|
||||
|
||||
@@ -1,9 +1,10 @@
|
||||
product=firefox
|
||||
branch=1.9.1
|
||||
profilename=firefox-1.9.1-tracemonkey-profile
|
||||
profiledirectory=/tmp/firefox-1.9.1-tracemonkey-profile
|
||||
executablepath=${BUILDDIR}/1.9.1-tracemonkey/mozilla/firefox-debug/dist
|
||||
userpreferences=${TEST_DIR}/prefs/test-user.js
|
||||
extensiondir=${TEST_DIR}/xpi
|
||||
buildtype=debug
|
||||
TEST_MOZILLA_HG=http://hg.mozilla.org/tracemonkey
|
||||
product=${product:-firefox}
|
||||
branch=${branch:-1.9.1}
|
||||
buildtype=${buildtype:-debug}
|
||||
profilename=${profilename:-firefox-1.9.1-tracemonkey-profile}
|
||||
profiledirectory=${profiledirectory:-/tmp/firefox-1.9.1-tracemonkey-profile}
|
||||
executablepath=${executablepath:-/work/mozilla/builds/1.9.1-tracemonkey/mozilla/firefox-debug/dist}
|
||||
userpreferences=${userpreferences:-/work/mozilla/mozilla.com/test.mozilla.com/www/prefs/test-user.js}
|
||||
extensiondir=${extensiondir:-/work/mozilla/mozilla.com/test.mozilla.com/www/xpi}
|
||||
TEST_MOZILLA_HG=${TEST_MOZILLA_HG:-http://hg.mozilla.org/tracemonkey}
|
||||
TEST_MOZILLA_HG_REV=${TEST_MOZILLA_HG_REV:-tip}
|
||||
|
||||
@@ -1,9 +1,10 @@
|
||||
product=firefox
|
||||
branch=1.9.1
|
||||
profilename=firefox-1.9.1-tracemonkey-profile
|
||||
profiledirectory=/tmp/firefox-1.9.1-tracemonkey-profile
|
||||
executablepath=${BUILDDIR}/1.9.1-tracemonkey/mozilla/firefox-opt/dist
|
||||
userpreferences=${TEST_DIR}/prefs/test-user.js
|
||||
extensiondir=${TEST_DIR}/xpi
|
||||
buildtype=opt
|
||||
TEST_MOZILLA_HG=http://hg.mozilla.org/tracemonkey
|
||||
product=${product:-firefox}
|
||||
branch=${branch:-1.9.1}
|
||||
buildtype=${buildtype:-opt}
|
||||
profilename=${profilename:-firefox-1.9.1-tracemonkey-profile}
|
||||
profiledirectory=${profiledirectory:-/tmp/firefox-1.9.1-tracemonkey-profile}
|
||||
executablepath=${executablepath:-/work/mozilla/builds/1.9.1-tracemonkey/mozilla/firefox-opt/dist}
|
||||
userpreferences=${userpreferences:-/work/mozilla/mozilla.com/test.mozilla.com/www/prefs/test-user.js}
|
||||
extensiondir=${extensiondir:-/work/mozilla/mozilla.com/test.mozilla.com/www/xpi}
|
||||
TEST_MOZILLA_HG=${TEST_MOZILLA_HG:-http://hg.mozilla.org/tracemonkey}
|
||||
TEST_MOZILLA_HG_REV=${TEST_MOZILLA_HG_REV:-tip}
|
||||
|
||||
@@ -1,9 +1,10 @@
|
||||
product=firefox
|
||||
branch=1.9.1
|
||||
profilename=firefox-1.9.1-tracemonkey-test-profile
|
||||
profiledirectory=/tmp/firefox-1.9.1-tracemonkey-test-profile
|
||||
executablepath=${BUILDDIR}/1.9.1-tracemonkey-test/mozilla/firefox-debug/dist
|
||||
userpreferences=${TEST_DIR}/prefs/test-user.js
|
||||
extensiondir=${TEST_DIR}/xpi
|
||||
buildtype=debug
|
||||
TEST_MOZILLA_HG=http://hg.mozilla.org/tracemonkey
|
||||
product=${product:-firefox}
|
||||
branch=${branch:-1.9.1}
|
||||
buildtype=${buildtype:-debug}
|
||||
profilename=${profilename:-firefox-1.9.1-tracemonkey-test-profile}
|
||||
profiledirectory=${profiledirectory:-/tmp/firefox-1.9.1-tracemonkey-test-profile}
|
||||
executablepath=${executablepath:-/work/mozilla/builds/1.9.1-tracemonkey-test/mozilla/firefox-debug/dist}
|
||||
userpreferences=${userpreferences:-/work/mozilla/mozilla.com/test.mozilla.com/www/prefs/test-user.js}
|
||||
extensiondir=${extensiondir:-/work/mozilla/mozilla.com/test.mozilla.com/www/xpi}
|
||||
TEST_MOZILLA_HG=${TEST_MOZILLA_HG:-http://hg.mozilla.org/tracemonkey}
|
||||
TEST_MOZILLA_HG_REV=${TEST_MOZILLA_HG_REV:-tip}
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user