Changeset 95441 in webkit


Ignore:
Timestamp:
Sep 19, 2011 11:03:06 AM (13 years ago)
Author:
commit-queue@webkit.org
Message:

Buildbot marks a nrwt bot red when tests are missing results
https://bugs.webkit.org/show_bug.cgi?id=64812

Patch by Kristóf Kosztyó <kkristof@inf.u-szeged.hu> on 2011-09-19
Reviewed by Ryosuke Niwa.

  • Scripts/webkitpy/layout_tests/controllers/manager.py:
  • Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
Location:
trunk/Tools
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r95440 r95441  
     12011-09-19  Kristóf Kosztyó  <kkristof@inf.u-szeged.hu>
     2
     3        Buildbot marks a nrwt bot red when tests are missing results
     4        https://bugs.webkit.org/show_bug.cgi?id=64812
     5
     6        Reviewed by Ryosuke Niwa.
     7
     8        * Scripts/webkitpy/layout_tests/controllers/manager.py:
     9        * Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
     10
    1112011-09-19  Jessie Berlin  <jberlin@apple.com>
    212
  • trunk/Tools/Scripts/webkitpy/layout_tests/controllers/manager.py

    r95290 r95441  
    148148                    actual.append(keywords[retry_result_type])
    149149                    num_flaky += 1
     150                # FIXME: break MISSING results into a different category
     151                elif 'MISSING' in actual:
     152                    num_flaky += 1
    150153                else:
    151154                    num_regressions += 1
  • trunk/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py

    r91136 r95441  
    716716        file_list = fs.written_files.keys()
    717717        file_list.remove('/tmp/layout-test-results/tests_run0.txt')
    718         self.assertEquals(res, 2)
     718        self.assertEquals(res, 0)
    719719        self.assertFalse(out.empty())
    720720        self.assertEqual(len(file_list), 4)
Note: See TracChangeset for help on using the changeset viewer.