Changeset 91304 in webkit


Ignore:
Timestamp:
Jul 19, 2011 2:49:07 PM (13 years ago)
Author:
ojan@chromium.org
Message:

fix flakiness dashboard for XP bots with XP in the name instead of WIN
https://bugs.webkit.org/show_bug.cgi?id=64826

Reviewed by Mihai Parparita.

  • TestResultServer/static-dashboards/flakiness_dashboard.html:
  • TestResultServer/static-dashboards/flakiness_dashboard_tests.js:
Location:
trunk/Tools
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r91291 r91304  
     12011-07-19  Ojan Vafai  <ojan@chromium.org>
     2
     3        fix flakiness dashboard for XP bots with XP in the name instead of WIN
     4        https://bugs.webkit.org/show_bug.cgi?id=64826
     5
     6        Reviewed by Mihai Parparita.
     7
     8        * TestResultServer/static-dashboards/flakiness_dashboard.html:
     9        * TestResultServer/static-dashboards/flakiness_dashboard_tests.js:
     10
    1112011-07-19  Cary Clark  <caryclark@google.com>
    212
  • trunk/Tools/TestResultServer/static-dashboards/flakiness_dashboard.html

    r91212 r91304  
    545545        else if (stringContains(currentBuildUppercase, 'VISTA'))
    546546            platform = 'VISTA';
    547         else if (stringContains(currentBuildUppercase, 'WIN'))
     547        else if (stringContains(currentBuildUppercase, 'WIN') || stringContains(currentBuildUppercase, 'XP'))
    548548            platform = 'XP';
    549549        else if (stringContains(currentBuildUppercase, 'LINUX'))
  • trunk/Tools/TestResultServer/static-dashboards/flakiness_dashboard_tests.js

    r91212 r91304  
    210210    runPlatformAndBuildTypeTest('GPU Win7 Tests (dbg)(2) - GPU', 'WIN7', 'DEBUG');
    211211    runPlatformAndBuildTypeTest('GPU Linux Tests x64 - GPU', 'LUCID', 'RELEASE');
     212    runPlatformAndBuildTypeTest('XP Tests', 'XP', 'RELEASE');
    212213}
    213214
Note: See TracChangeset for help on using the changeset viewer.