Changeset 148349 in webkit


Ignore:
Timestamp:
Apr 13, 2013 12:40:07 AM (11 years ago)
Author:
zandobersek@gmail.com
Message:

Fix flakiness dashboard unit test failures
https://bugs.webkit.org/show_bug.cgi?id=114518

Reviewed by Ryosuke Niwa.

Fix the current failures in unit tests for the flakiness dashboard by adjusting failing
test cases to simulate loading the builders list from the webkit.org build master, replacing
the Chromium builders and platforms that are used in tests with builders and platforms for the
Apple Mac Lion WebKit2 port, and removing two test cases that were testing Chromium-specific
functionality of the dashboard.

This is sort of an interlude to the flakiness dashboard cleanup, with the removal of Chromium-specific
code and hopefully general simplification of the dashboard codebase coming in near future.

  • TestResultServer/static-dashboards/flakiness_dashboard_unittests.js:

(resetGlobals):
(test):

  • TestResultServer/static-dashboards/loader_unittests.js:
Location:
trunk/Tools
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r148328 r148349  
     12013-04-13  Zan Dobersek  <zdobersek@igalia.com>
     2
     3        Fix flakiness dashboard unit test failures
     4        https://bugs.webkit.org/show_bug.cgi?id=114518
     5
     6        Reviewed by Ryosuke Niwa.
     7
     8        Fix the current failures in unit tests for the flakiness dashboard by adjusting failing
     9        test cases to simulate loading the builders list from the webkit.org build master, replacing
     10        the Chromium builders and platforms that are used in tests with builders and platforms for the
     11        Apple Mac Lion WebKit2 port, and removing two test cases that were testing Chromium-specific
     12        functionality of the dashboard.
     13
     14        This is sort of an interlude to the flakiness dashboard cleanup, with the removal of Chromium-specific
     15        code and hopefully general simplification of the dashboard codebase coming in near future.
     16
     17        * TestResultServer/static-dashboards/flakiness_dashboard_unittests.js:
     18        (resetGlobals):
     19        (test):
     20        * TestResultServer/static-dashboards/loader_unittests.js:
     21
    1222013-04-12  David Kilzer  <ddkilzer@apple.com>
    223
  • trunk/Tools/TestResultServer/static-dashboards/flakiness_dashboard_unittests.js

    r147457 r148349  
    4545
    4646    LOAD_BUILDBOT_DATA([{
    47         name: 'ChromiumWebkit',
    48         url: 'dummyurl',
    49         tests: {'layout-tests': {'builders': ['WebKit Linux', 'WebKit Linux (dbg)', 'WebKit Mac10.7', 'WebKit Win', 'WebKit Win (dbg)']}}
    50     },
    51     {
    5247        name: 'webkit.org',
    5348        url: 'dummyurl',
    54         tests: {'layout-tests': {'builders': ['Apple SnowLeopard Tests', 'Qt Linux Tests', 'Chromium Mac10.7 Tests', 'GTK Win']}}
     49        tests: {'layout-tests': {'builders': ['Apple Lion Release WK2 (Tests)', 'Apple Lion Debug WK2 (Tests)', 'GTK Linux 64-bit Release', 'Qt Linux Tests']}}
    5550    }]);
    5651 
     
    9085test('releaseFail', 2, function() {
    9186    resetGlobals();
    92     loadBuildersList('@ToT - chromium.org', 'layout-tests');
    93 
    94     var builder = 'WebKit Win';
     87    loadBuildersList('@ToT - webkit.org', 'layout-tests');
     88
     89    var builder = 'Apple Lion Release WK2 (Tests)';
    9590    var test = 'foo/1.html';
    9691    var expectationsArray = [
    9792        {'modifiers': 'RELEASE', 'expectations': 'FAIL'}
    9893    ];
    99     g_expectationsByPlatform['CHROMIUM'] = getParsedExpectations('[ Release ] ' + test + ' [ Failure ]');
     94    g_expectationsByPlatform['APPLE_MAC_LION_WK2'] = getParsedExpectations('[ Release ] ' + test + ' [ Failure ]');
    10095    runExpectationsTest(builder, test, 'FAIL', 'RELEASE');
    10196});
     
    10398test('releaseFailDebugCrashReleaseBuilder', 2, function() {
    10499    resetGlobals();
    105     loadBuildersList('@ToT - chromium.org', 'layout-tests');
    106     var builder = 'WebKit Win';
     100    loadBuildersList('@ToT - webkit.org', 'layout-tests');
     101
     102    var builder = 'Apple Lion Release WK2 (Tests)';
    107103    var test = 'foo/1.html';
    108104    var expectationsArray = [
     
    110106        {'modifiers': 'DEBUG', 'expectations': 'CRASH'}
    111107    ];
    112     g_expectationsByPlatform['CHROMIUM'] = getParsedExpectations('[ Release ] ' + test + ' [ Failure ]\n' +
     108    g_expectationsByPlatform['APPLE_MAC_LION_WK2'] = getParsedExpectations('[ Release ] ' + test + ' [ Failure ]\n' +
    113109        '[ Debug ] ' + test + ' [ Crash ]');
    114110    runExpectationsTest(builder, test, 'FAIL', 'RELEASE');
     
    117113test('releaseFailDebugCrashDebugBuilder', 2, function() {
    118114    resetGlobals();
    119     loadBuildersList('@ToT - chromium.org', 'layout-tests');
    120     var builder = 'WebKit Win (dbg)';
     115    loadBuildersList('@ToT - webkit.org', 'layout-tests');
     116
     117    var builder = 'Apple Lion Debug WK2 (Tests)';
    121118    var test = 'foo/1.html';
    122119    var expectationsArray = [
     
    124121        {'modifiers': 'DEBUG', 'expectations': 'CRASH'}
    125122    ];
    126     g_expectationsByPlatform['CHROMIUM'] = getParsedExpectations('[ Release ] ' + test + ' [ Failure ]\n' +
     123    g_expectationsByPlatform['APPLE_MAC_LION_WK2'] = getParsedExpectations('[ Release ] ' + test + ' [ Failure ]\n' +
    127124        '[ Debug ] ' + test + ' [ Crash ]');
    128125    runExpectationsTest(builder, test, 'CRASH', 'DEBUG');
    129126});
    130127
    131 test('overrideJustBuildType', 12, function() {
     128test('overrideJustBuildType', 4, function() {
    132129    resetGlobals();
    133     loadBuildersList('@ToT - chromium.org', 'layout-tests');
     130    loadBuildersList('@ToT - webkit.org', 'layout-tests');
    134131    var test = 'bar/1.html';
    135     g_expectationsByPlatform['CHROMIUM'] = getParsedExpectations('bar [ WontFix Failure Pass Timeout ]\n' +
    136         '[ Mac ] ' + test + ' [ WontFix Failure ]\n' +
    137         '[ Linux Debug ] ' + test + ' [ Crash ]');
    138    
    139     runExpectationsTest('WebKit Win', test, 'FAIL PASS TIMEOUT', 'WONTFIX');
    140     runExpectationsTest('WebKit Win (dbg)(3)', test, 'FAIL PASS TIMEOUT', 'WONTFIX');
    141     runExpectationsTest('WebKit Linux', test, 'FAIL PASS TIMEOUT', 'WONTFIX');
    142     runExpectationsTest('WebKit Linux (dbg)(3)', test, 'CRASH', 'LINUX DEBUG');
    143     runExpectationsTest('WebKit Mac10.7', test, 'FAIL', 'MAC WONTFIX');
    144     runExpectationsTest('WebKit Mac10.7 (dbg)(3)', test, 'FAIL', 'MAC WONTFIX');
     132    g_expectationsByPlatform['APPLE_MAC_LION_WK2'] = getParsedExpectations('bar [ WontFix Failure Pass Timeout ]\n' +
     133        '[ Release ] ' + test + ' [ WontFix Failure ]\n' +
     134        '[ Debug ] ' + test + ' [ Crash ]');
     135
     136    runExpectationsTest('Apple Lion Release WK2 (Tests)', test, 'FAIL', 'RELEASE WONTFIX');
     137    runExpectationsTest('Apple Lion Debug WK2 (Tests)', test, 'CRASH', 'DEBUG');
    145138});
    146139
     
    231224});
    232225
    233 test('getExpectations', 16, function() {
     226test('getExpectations', 14, function() {
    234227    resetGlobals();
    235     loadBuildersList('@ToT - chromium.org', 'layout-tests');
     228    loadBuildersList('@ToT - webkit.org', 'layout-tests');
    236229 
    237230    stubResultsByBuilder({
    238         'WebKit Win' : {
     231        'Apple Lion Release WK2 (Tests)' : {
    239232            'tests': {
    240233                'foo/test1.html': {'results': [[100, 'F']], 'times': [[100, 0]]},
     
    246239    });
    247240
    248     g_expectationsByPlatform['CHROMIUM'] = getParsedExpectations('Bug(123) foo [ Failure Pass Crash ]\n' +
     241    g_expectationsByPlatform['APPLE_MAC_LION_WK2'] = getParsedExpectations('Bug(123) foo [ Failure Pass Crash ]\n' +
    249242        'Bug(Foo) [ Release ] foo/test1.html [ Failure ]\n' +
    250243        '[ Debug ] foo/test1.html [ Crash ]\n' +
    251244        'Bug(456) foo/test2.html [ Failure ]\n' +
    252         '[ Linux Debug ] foo/test2.html [ Crash ]\n' +
     245        '[ Debug ] foo/test2.html [ Crash ]\n' +
    253246        '[ Release ] test1.html [ Failure ]\n' +
    254247        '[ Debug ] test1.html [ Crash ]\n');
    255     g_expectationsByPlatform['CHROMIUM_ANDROID'] = getParsedExpectations('Bug(654) foo/test2.html [ Crash ]\n');
    256248
    257249    g_expectationsByPlatform['GTK'] = getParsedExpectations('Bug(42) foo/test2.html [ ImageOnlyFailure ]\n' +
     
    263255    processExpectations();
    264256   
    265     var expectations = getExpectations('foo/test1.html', 'CHROMIUM_XP', 'DEBUG');
     257    var expectations = getExpectations('foo/test1.html', 'APPLE_MAC_LION_WK2', 'DEBUG');
    266258    equal(JSON.stringify(expectations), '{"modifiers":"DEBUG","expectations":"CRASH"}');
    267259
    268     var expectations = getExpectations('foo/test1.html', 'CHROMIUM_LUCID', 'RELEASE');
     260    var expectations = getExpectations('foo/test1.html', 'APPLE_MAC_LION_WK2', 'RELEASE');
    269261    equal(JSON.stringify(expectations), '{"modifiers":"Bug(Foo) RELEASE","expectations":"FAIL"}');
    270262
    271     var expectations = getExpectations('foo/test2.html', 'CHROMIUM_LUCID', 'RELEASE');
     263    var expectations = getExpectations('foo/test2.html', 'APPLE_MAC_LION_WK2', 'RELEASE');
    272264    equal(JSON.stringify(expectations), '{"modifiers":"Bug(456)","expectations":"FAIL"}');
    273265
    274     var expectations = getExpectations('foo/test2.html', 'CHROMIUM_LION', 'DEBUG');
    275     equal(JSON.stringify(expectations), '{"modifiers":"Bug(456)","expectations":"FAIL"}');
    276 
    277     var expectations = getExpectations('foo/test2.html', 'CHROMIUM_LUCID', 'DEBUG');
    278     equal(JSON.stringify(expectations), '{"modifiers":"LINUX DEBUG","expectations":"CRASH"}');
    279 
    280     var expectations = getExpectations('foo/test2.html', 'CHROMIUM_ANDROID', 'RELEASE');
    281     equal(JSON.stringify(expectations), '{"modifiers":"Bug(654)","expectations":"CRASH"}');
    282 
    283     var expectations = getExpectations('test1.html', 'CHROMIUM_ANDROID', 'RELEASE');
     266    var expectations = getExpectations('foo/test2.html', 'APPLE_MAC_LION_WK2', 'DEBUG');
     267    equal(JSON.stringify(expectations), '{"modifiers":"DEBUG","expectations":"CRASH"}');
     268
     269    var expectations = getExpectations('test1.html', 'APPLE_MAC_LION_WK2', 'RELEASE');
    284270    equal(JSON.stringify(expectations), '{"modifiers":"RELEASE","expectations":"FAIL"}');
    285271
    286     var expectations = getExpectations('foo/test3.html', 'CHROMIUM_LUCID', 'DEBUG');
     272    var expectations = getExpectations('foo/test3.html', 'APPLE_MAC_LION_WK2', 'DEBUG');
    287273    equal(JSON.stringify(expectations), '{"modifiers":"Bug(123)","expectations":"FAIL PASS CRASH"}');
    288274
    289     var expectations = getExpectations('test1.html', 'CHROMIUM_XP', 'DEBUG');
     275    var expectations = getExpectations('test1.html', 'APPLE_MAC_LION_WK2', 'DEBUG');
    290276    equal(JSON.stringify(expectations), '{"modifiers":"DEBUG","expectations":"CRASH"}');
    291277
    292     var expectations = getExpectations('test1.html', 'CHROMIUM_LUCID', 'RELEASE');
     278    var expectations = getExpectations('test1.html', 'APPLE_MAC_LION_WK2', 'RELEASE');
    293279    equal(JSON.stringify(expectations), '{"modifiers":"RELEASE","expectations":"FAIL"}');
    294280
     
    329315    // FIXME(jparent): Remove this once global isn't used.
    330316    g_history = historyInstance;
    331     loadBuildersList('@ToT - chromium.org', 'layout-tests');
    332     var builder = 'WebKit Win';
     317    loadBuildersList('@ToT - webkit.org', 'layout-tests');
     318    var builder = 'Apple Lion Release WK2 (Tests)';
    333319    g_perBuilderWithExpectationsButNoFailures[builder] = ['passing-test1.html', 'passing-test2.html'];
    334320    g_perBuilderSkippedPaths[builder] = ['skipped-test1.html'];
     
    338324    historyInstance.dashboardSpecificState.showSkipped = true;
    339325
    340     historyInstance.crossDashboardState.group = '@ToT - chromium.org';
     326    historyInstance.crossDashboardState.group = '@ToT - webkit.org';
    341327    historyInstance.crossDashboardState.testType = 'layout-tests';
    342328   
     
    372358    var group = selects[1];
    373359    equal(group.parentNode.textContent.indexOf('Group:'), 0);
    374     equal(group.children.length, 3);
     360    equal(group.children.length, 1);
    375361
    376362    historyInstance.crossDashboardState.testType = 'layout-tests';
     
    380366    var group = selects[1];
    381367    equal(group.parentNode.textContent.indexOf('Group:'), 0);
    382     equal(group.children.length, 4);
     368    equal(group.children.length, 1);
    383369});
    384370
    385371test('htmlForIndividualTestOnAllBuilders', 1, function() {
    386372    resetGlobals();
    387     loadBuildersList('@ToT - chromium.org', 'layout-tests');
     373    loadBuildersList('@ToT - webkit.org', 'layout-tests');
    388374    equal(htmlForIndividualTestOnAllBuilders('foo/nonexistant.html'), '<div class="not-found">Test not found. Either it does not exist, is skipped or passes on all platforms.</div>');
    389375});
     
    391377test('htmlForIndividualTestOnAllBuildersWithResultsLinksNonexistant', 1, function() {
    392378    resetGlobals();
    393     loadBuildersList('@ToT - chromium.org', 'layout-tests');
     379    loadBuildersList('@ToT - webkit.org', 'layout-tests');
    394380    equal(htmlForIndividualTestOnAllBuildersWithResultsLinks('foo/nonexistant.html'),
    395381        '<div class="not-found">Test not found. Either it does not exist, is skipped or passes on all platforms.</div>' +
     
    404390
    405391test('htmlForIndividualTestOnAllBuildersWithResultsLinks', 1, function() {
    406     resetGlobals();
    407     loadBuildersList('@ToT - chromium.org', 'layout-tests');
    408 
    409     var builderName = 'WebKit Linux';
     392    var historyInstance = resetGlobals();
     393    historyInstance.crossDashboardState.group = '@ToT - webkit.org';
     394    loadBuildersList('@ToT - webkit.org', 'layout-tests');
     395
     396    var builderName = 'Apple Lion Release WK2 (Tests)';
    410397    var test = 'dummytest.html';
    411398    g_testToResultsMap[test] = [createResultsObjectForTest(test, builderName)];
     
    424411        '<div>The following builders either don\'t run this test (e.g. it\'s skipped) or all runs passed:</div>' +
    425412        '<div class=skipped-builder-list>' +
    426             '<div class=skipped-builder>WebKit Linux (dbg)</div><div class=skipped-builder>WebKit Mac10.7</div><div class=skipped-builder>WebKit Win</div><div class=skipped-builder>WebKit Win (dbg)</div>' +
    427         '</div>' +
    428         '<div class=expectations test=dummytest.html>' +
    429             '<div><span class=link onclick="g_history.setQueryParameter(\'showExpectations\', true)">Show results</span> | ' +
    430             '<span class=link onclick="g_history.setQueryParameter(\'showLargeExpectations\', true)">Show large thumbnails</span> | ' +
    431             '<b>Only shows actual results/diffs from the most recent *failure* on each bot.</b></div>' +
    432         '</div>');
    433 });
    434 
    435 test('htmlForIndividualTestOnAllBuildersWithResultsLinksWebkitMaster', 1, function() {
    436     var historyInstance = resetGlobals();
    437     historyInstance.crossDashboardState.group = '@ToT - webkit.org';
    438     loadBuildersList('@ToT - webkit.org', 'layout-tests');
    439 
    440     var builderName = 'Apple SnowLeopard Tests';
    441     var test = 'dummytest.html';
    442     g_testToResultsMap[test] = [createResultsObjectForTest(test, builderName)];
    443 
    444     equal(htmlForIndividualTestOnAllBuildersWithResultsLinks(test),
    445         '<table class=test-table><thead><tr>' +
    446                 '<th sortValue=test><div class=table-header-content><span></span><span class=header-text>test</span></div></th>' +
    447                 '<th sortValue=bugs><div class=table-header-content><span></span><span class=header-text>bugs</span></div></th>' +
    448                 '<th sortValue=modifiers><div class=table-header-content><span></span><span class=header-text>modifiers</span></div></th>' +
    449                 '<th sortValue=expectations><div class=table-header-content><span></span><span class=header-text>expectations</span></div></th>' +
    450                 '<th sortValue=slowest><div class=table-header-content><span></span><span class=header-text>slowest run</span></div></th>' +
    451                 '<th sortValue=flakiness colspan=10000><div class=table-header-content><span></span><span class=header-text>flakiness (numbers are runtimes in seconds)</span></div></th>' +
    452             '</tr></thead>' +
    453             '<tbody></tbody>' +
    454         '</table>' +
    455         '<div>The following builders either don\'t run this test (e.g. it\'s skipped) or all runs passed:</div>' +
    456         '<div class=skipped-builder-list>' +
    457             '<div class=skipped-builder>Qt Linux Tests</div><div class=skipped-builder>Chromium Mac10.7 Tests</div><div class=skipped-builder>GTK Win</div>' +
     413            '<div class=skipped-builder>Apple Lion Debug WK2 (Tests)</div><div class=skipped-builder>GTK Linux 64-bit Release</div><div class=skipped-builder>Qt Linux Tests</div>' +
    458414        '</div>' +
    459415        '<div class=expectations test=dummytest.html>' +
     
    468424test('htmlForIndividualTests', 4, function() {
    469425    var historyInstance = resetGlobals();
    470     loadBuildersList('@ToT - chromium.org', 'layout-tests');
     426    loadBuildersList('@ToT - webkit.org', 'layout-tests');
    471427    var test1 = 'foo/nonexistant.html';
    472428    var test2 = 'bar/nonexistant.html';
     
    564520});
    565521
    566 test('builderGroupIsToTWebKitAttribute', 2, function() {
    567     var dummyMaster = new builders.BuilderMaster('Chromium', 'dummyurl', {'layout-tests': {'builders': ['WebKit Linux', 'WebKit Linux (dbg)', 'WebKit Mac10.7', 'WebKit Win']}});
    568     var testBuilderGroups = {
    569         '@ToT - dummy.org': new BuilderGroup(BuilderGroup.TOT_WEBKIT),
    570         '@DEPS - dummy.org': new BuilderGroup(BuilderGroup.DEPS_WEBKIT),
    571     }
    572 
    573     var testJSONData = "{ \"Dummy Builder 1\": null, \"Dummy Builder 2\": null }";
    574     requestBuilderList(testBuilderGroups, 'ChromiumWebkit', '@ToT - dummy.org', testBuilderGroups['@ToT - dummy.org'], 'layout-tests');
    575     equal(testBuilderGroups['@ToT - dummy.org'].isToTWebKit, true);
    576     requestBuilderList(testBuilderGroups, 'ChromiumWebkit', '@DEPS - dummy.org', testBuilderGroups['@DEPS - dummy.org'], 'layout-tests');
    577     equal(testBuilderGroups['@DEPS - dummy.org'].isToTWebKit, false);
    578 });
    579 
    580522test('requestBuilderListAddsBuilderGroupEntry', 1, function() {
    581523    var testBuilderGroups = { '@ToT - dummy.org': null };
    582524    var builderGroup = new BuilderGroup(BuilderGroup.TOT_WEBKIT);
    583525    var groupName = '@ToT - dummy.org';
    584     requestBuilderList(testBuilderGroups, 'ChromiumWebkit', groupName, builderGroup, 'layout-tests');
     526    requestBuilderList(testBuilderGroups, 'webkit.org', groupName, builderGroup, 'layout-tests');
    585527
    586528    equal(testBuilderGroups['@ToT - dummy.org'], builderGroup);
     
    691633test('changeTestTypeInvalidatesGroup', 1, function() {
    692634    var historyInstance = resetGlobals();
    693     var originalGroup = '@ToT - chromium.org';
     635    var originalGroup = '@ToT - webkit.org';
    694636    var originalTestType = 'layout-tests';
    695637    loadBuildersList(originalGroup, originalTestType);
  • trunk/Tools/TestResultServer/static-dashboards/loader_unittests.js

    r147457 r148349  
    4545    }
    4646
    47     try {
    48         resourceLoader._loadingSteps = [loadingStep1, loadingStep2];
    49         resourceLoader.load();
    50     }
     47    resourceLoader._loadingSteps = [loadingStep1, loadingStep2];
     48    resourceLoader.load();
    5149});
    5250
    5351// Total number of assertions is 1 for the deepEqual of the builder lists
    5452// and then 2 per builder (one for ok, one for deepEqual of tests).
    55 test('results files loading', 11, function() {
     53test('results files loading', 9, function() {
    5654    resetGlobals();
    57     var expectedLoadedBuilders =  ['WebKit Linux', 'WebKit Linux (dbg)', 'WebKit Mac10.7', 'WebKit Win', 'WebKit Win (dbg)'];
     55    var expectedLoadedBuilders =  ['Apple Lion Debug WK2 (Tests)', 'Apple Lion Release WK2 (Tests)', 'GTK Linux 64-bit Release', 'Qt Linux Tests'];
    5856    var loadedBuilders = [];
    5957    var resourceLoader = new loader.Loader();
     
    6866    var requestFunction = loader.request;
    6967    loader.request = function(url, successCallback, errorCallback) {
    70         var builderName = /builder=([\w ().]+)&/.exec(url)[1];
     68        var builderName = /builder=([\w ().-]+)&/.exec(url)[1];
    7169        loadedBuilders.push(builderName);
    7270        successCallback({responseText: '{"version": 4, "' + builderName + '": {"secondsSinceEpoch": [' + Date.now() + '], "tests": {}}}'});
    7371    }
    7472
    75     loadBuildersList('@ToT - chromium.org', 'layout-tests');
     73    loadBuildersList('@ToT - webkit.org', 'layout-tests');
    7674 
    7775    try {
     
    8583    resetGlobals();
    8684    g_history.parseCrossDashboardParameters();
    87     var expectedLoadedPlatforms = ["chromium", "chromium-android", "efl", "efl-wk1", "efl-wk2", "gtk",
    88                                    "gtk-wk2", "mac", "mac-lion", "mac-snowleopard", "qt", "win", "wk2"];
     85    var expectedLoadedPlatforms = ["efl", "efl-wk1", "efl-wk2", "gtk", "gtk-wk2",
     86        "mac", "mac-lion", "mac-snowleopard", "qt", "win", "wk2"];
    8987    var loadedPlatforms = [];
    9088    var resourceLoader = new loader.Loader();
     
    108106test('results file failing to load', 2, function() {
    109107    resetGlobals();
    110     loadBuildersList('@ToT - chromium.org', 'layout-tests');
     108    loadBuildersList('@ToT - webkit.org', 'layout-tests');
    111109   
    112110    var resourceLoader = new loader.Loader();
     
    131129test('Default builder gets set.', 3, function() {
    132130    resetGlobals();
    133     loadBuildersList('@ToT - chromium.org', 'layout-tests');
     131    loadBuildersList('@ToT - webkit.org', 'layout-tests');
    134132   
    135133    var defaultBuilder = currentBuilderGroup().defaultBuilder();
Note: See TracChangeset for help on using the changeset viewer.