Changeset 172748 in webkit


Ignore:
Timestamp:
Aug 19, 2014 1:09:10 AM (10 years ago)
Author:
commit-queue@webkit.org
Message:

Remove obsolete run-javascriptcore-tests result parsing from master.cfg
https://bugs.webkit.org/show_bug.cgi?id=136039

Patch by Renato Nagy <nagy.renato@stud.u-szeged.hu> on 2014-08-19
Reviewed by Csaba Osztrogonác.

  • BuildSlaveSupport/build.webkit.org-config/master.cfg:

(RunJavaScriptCoreTests.commandComplete):

  • BuildSlaveSupport/build.webkit.org-config/mastercfg_unittest.py:

(RunJavaScriptCoreTestsTest.test_no_failure_new_output):
(RunJavaScriptCoreTestsTest.test_mozilla_failure_old_output):
(RunJavaScriptCoreTestsTest):
(RunJavaScriptCoreTestsTest.test_jsc_stress_failure_new_output):
(RunJavaScriptCoreTestsTest.test_mozilla_failure_new_output): Deleted.
(test_layout_failure_new_output): Deleted.
(test_layout_crash_new_output): Deleted.
(test_mozilla_and_layout_failure_new_output): Deleted.
(test_jsc_stress_failure_new_output): Deleted.
(test_js_crashes_and_jsc_stress_failures_new_output): Deleted.

Location:
trunk/Tools
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/BuildSlaveSupport/build.webkit.org-config/master.cfg

    r172701 r172748  
    310310        expressions = [
    311311            ('failing Mozilla test', re.compile(r'^Results for Mozilla tests:\r?\n\s+(\d+) regression', re.MULTILINE)),
    312             ('failing js test', re.compile(r'^Results for LayoutTests/js tests:\r?\n\s+(\d+) failure', re.MULTILINE)),
    313             ('crashing js test', re.compile(r'^Results for LayoutTests/js tests:\r?\n.*\n\s+(\d+) crash', re.MULTILINE)),
    314312            ('failing JSC stress test', re.compile(r'^Results for JSC stress tests:\r?\n\s+(\d+) failure', re.MULTILINE)),
    315313        ]
  • trunk/Tools/BuildSlaveSupport/build.webkit.org-config/mastercfg_unittest.py

    r172701 r172748  
    119119    OK.""")
    120120
     121    def test_no_failure_new_output(self):
     122        self.assertResults(SUCCESS, ["jscore-test"], 0, """Results for JSC stress tests:
     123    0 failures found.
     124    OK.""")
     125
    121126    def test_mozilla_failure_old_output(self):
    122127        self.assertResults(FAILURE, ["jscore-test", '1 failing Mozilla test '], 1, """Results for Mozilla tests:
     
    124129    0 tests fixed.""")
    125130
    126     def test_mozilla_failure_new_output(self):
    127         self.assertResults(FAILURE, ["jscore-test", '1 failing Mozilla test '], 1, """Results for Mozilla tests:
    128     1 regression found.
    129     0 tests fixed.
    130 
    131 Results for LayoutTests/js tests:
    132     0 failures found.
    133     0 crashes found.
    134     OK.""")
    135 
    136     def test_layout_failure_new_output(self):
    137         self.assertResults(FAILURE, ["jscore-test", '469 failing js tests '], 1,  """Results for Mozilla tests:
    138     0 regressions found.
    139     0 tests fixed.
    140     OK.
    141 
    142 Results for LayoutTests/js tests:
    143     469 failures found.
    144     0 crashes found.
    145 
    146 Results for JSC stress tests:
    147     0 failures found.
    148     OK.""")
    149 
    150     def test_layout_crash_new_output(self):
    151         self.assertResults(FAILURE, ["jscore-test", '1 crashing js test '], 1,  """Results for Mozilla tests:
    152     0 regressions found.
    153     0 tests fixed.
    154     OK.
    155 
    156 Results for LayoutTests/js tests:
    157     0 failures found.
    158     1 crashes found.
    159 
    160 Results for JSC stress tests:
    161     0 failures found.
    162     OK.""")
    163 
    164     def test_mozilla_and_layout_failure_new_output(self):
    165         self.assertResults(FAILURE, ["jscore-test", '1 failing Mozilla test ', '469 failing js tests '], 1,  """Results for Mozilla tests:
    166     1 regression found.
    167     0 tests fixed.
    168 
    169 Results for LayoutTests/js tests:
    170     469 failures found.
    171     0 crashes found.
    172 
    173 Results for JSC stress tests:
    174     0 failures found.
    175     OK.""")
     131    def test_mozilla_failures_old_output(self):
     132        self.assertResults(FAILURE, ["jscore-test", '2 failing Mozilla tests '], 1, """Results for Mozilla tests:
     133    2 regressions found.
     134    0 tests fixed.""")
    176135
    177136    def test_jsc_stress_failure_new_output(self):
    178         self.assertResults(FAILURE, ["jscore-test", '1 failing JSC stress test '], 1,  """Results for Mozilla tests:
    179     0 regression found.
    180     0 tests fixed.
    181 
    182 Results for LayoutTests/js tests:
    183     0 failures found.
    184     0 crashes found.
    185 
    186 Results for JSC stress tests:
    187     1 failures found.
    188     OK.""")
    189 
    190     def test_js_crashes_and_jsc_stress_failures_new_output(self):
    191         self.assertResults(FAILURE, ["jscore-test", '25 crashing js tests ', '284 failing JSC stress tests '], 1,  """Results for Mozilla tests:
    192     0 regression found.
    193     0 tests fixed.
    194 
    195 Results for LayoutTests/js tests:
    196     0 failures found.
    197     25 crashes found.
    198 
    199 Results for JSC stress tests:
    200     284 failures found.
    201     OK.""")
     137        self.assertResults(FAILURE, ["jscore-test", '1 failing JSC stress test '], 1,  """Results for JSC stress tests:
     138    1 failure found.""")
     139
     140    def test_jsc_stress_failures_new_output(self):
     141        self.assertResults(FAILURE, ["jscore-test", '5 failing JSC stress tests '], 1,  """Results for JSC stress tests:
     142    5 failures found.""")
    202143
    203144
  • trunk/Tools/ChangeLog

    r172747 r172748  
     12014-08-19  Renato Nagy  <nagy.renato@stud.u-szeged.hu>
     2
     3        Remove obsolete run-javascriptcore-tests result parsing from master.cfg
     4        https://bugs.webkit.org/show_bug.cgi?id=136039
     5
     6        Reviewed by Csaba Osztrogonác.
     7
     8        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
     9        (RunJavaScriptCoreTests.commandComplete):
     10        * BuildSlaveSupport/build.webkit.org-config/mastercfg_unittest.py:
     11        (RunJavaScriptCoreTestsTest.test_no_failure_new_output):
     12        (RunJavaScriptCoreTestsTest.test_mozilla_failure_old_output):
     13        (RunJavaScriptCoreTestsTest):
     14        (RunJavaScriptCoreTestsTest.test_jsc_stress_failure_new_output):
     15        (RunJavaScriptCoreTestsTest.test_mozilla_failure_new_output): Deleted.
     16        (test_layout_failure_new_output): Deleted.
     17        (test_layout_crash_new_output): Deleted.
     18        (test_mozilla_and_layout_failure_new_output): Deleted.
     19        (test_jsc_stress_failure_new_output): Deleted.
     20        (test_js_crashes_and_jsc_stress_failures_new_output): Deleted.
     21
    1222014-08-19  Alexey Proskuryakov  <ap@apple.com>
    223
Note: See TracChangeset for help on using the changeset viewer.