Changeset 147709 in webkit


Ignore:
Timestamp:
Apr 4, 2013 10:36:52 PM (11 years ago)
Author:
benjamin@webkit.org
Message:

Temporarily disable the Python unittests broken by the commit queue not running layout tests
https://bugs.webkit.org/show_bug.cgi?id=113997

Patch by Benjamin Poulain <bpoulain@apple.com> on 2013-04-04
Reviewed by Ryosuke Niwa.

Disable the tests until Ryosuke gets the time and hardware to have
a testing commit-queue.

  • Scripts/webkitpy/tool/bot/commitqueuetask_unittest.py:

(CommitQueueTaskTest):

  • Scripts/webkitpy/tool/commands/queues_unittest.py:

(CommitQueueTest):

Location:
trunk/Tools
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r147707 r147709  
     12013-04-04  Benjamin Poulain  <bpoulain@apple.com>
     2
     3        Temporarily disable the Python unittests broken by the commit queue not running layout tests
     4        https://bugs.webkit.org/show_bug.cgi?id=113997
     5
     6        Reviewed by Ryosuke Niwa.
     7
     8        Disable the tests until Ryosuke gets the time and hardware to have
     9        a testing commit-queue.
     10
     11        * Scripts/webkitpy/tool/bot/commitqueuetask_unittest.py:
     12        (CommitQueueTaskTest):
     13        * Scripts/webkitpy/tool/commands/queues_unittest.py:
     14        (CommitQueueTest):
     15
    1162013-04-04  Ryosuke Niwa  <rniwa@webkit.org>
    217
  • trunk/Tools/Scripts/webkitpy/tool/bot/commitqueuetask_unittest.py

    r140510 r147709  
    133133        return task
    134134
     135    @unittest.skip("Commit queue testing temporarily disabled.")
    135136    def test_success_case(self):
    136137        commit_queue = MockCommitQueue([])
     
    271272        self._run_through_task(commit_queue, expected_logs, expect_retry=True)
    272273
     274    @unittest.skip("Commit queue testing temporarily disabled.")
    273275    def test_flaky_test_failure(self):
    274276        commit_queue = MockCommitQueue([
     
    304306        self._run_through_task(commit_queue, expected_logs)
    305307
     308    @unittest.skip("Commit queue testing temporarily disabled.")
    306309    def test_failed_archive(self):
    307310        commit_queue = MockCommitQueue([
     
    336339        self._run_through_task(commit_queue, expected_logs)
    337340
     341    @unittest.skip("Commit queue testing temporarily disabled.")
    338342    def test_double_flaky_test_failure(self):
    339343        commit_queue = FailingTestCommitQueue([
     
    375379        self.assertFalse(success)
    376380
     381    @unittest.skip("Commit queue testing temporarily disabled.")
    377382    def test_test_failure(self):
    378383        commit_queue = MockCommitQueue([
     
    406411        self._run_through_task(commit_queue, expected_logs, GoldenScriptError)
    407412
     413    @unittest.skip("Commit queue testing temporarily disabled.")
    408414    def test_red_test_failure(self):
    409415        commit_queue = FailingTestCommitQueue([
     
    447453        self._run_through_task(commit_queue, expected_logs)
    448454
     455    @unittest.skip("Commit queue testing temporarily disabled.")
    449456    def test_very_red_tree_retry(self):
    450457        lots_of_failing_tests = map(lambda num: "test-%s.html" % num, range(0, 100))
     
    488495        self._run_through_task(commit_queue, expected_logs, expect_retry=True)
    489496
     497    @unittest.skip("Commit queue testing temporarily disabled.")
    490498    def test_red_tree_patch_rejection(self):
    491499        commit_queue = FailingTestCommitQueue([
     
    530538        self.assertEqual(task.failure_status_id, 1)
    531539
     540    @unittest.skip("Commit queue testing temporarily disabled.")
    532541    def test_land_failure(self):
    533542        commit_queue = MockCommitQueue([
  • trunk/Tools/Scripts/webkitpy/tool/commands/queues_unittest.py

    r147680 r147709  
    2929import os
    3030import StringIO
     31import unittest
    3132
    3233from webkitpy.common.checkout.scm import CheckoutNeedsUpdate
     
    233234        return test_results.TestResult(testname, [test_failures.FailureTextMismatch()])
    234235
     236    @unittest.skip("Commit queue testing temporarily disabled.")
    235237    def test_commit_queue(self):
    236238        tool = MockTool()
     
    316318        self.assert_queue_outputs(queue, expected_logs=expected_logs)
    317319
     320    @unittest.skip("Commit queue testing temporarily disabled.")
    318321    def test_rollout(self):
    319322        tool = MockTool()
     
    387390        self.assertFalse(options.test)
    388391
     392    @unittest.skip("Commit queue testing temporarily disabled.")
    389393    def test_manual_reject_during_processing(self):
    390394        queue = SecondThoughtsCommitQueue(MockTool())
Note: See TracChangeset for help on using the changeset viewer.