summaryrefslogtreecommitdiffstats
path: root/lldb/packages/Python/lldbsuite/test/issue_verification/TestFail.py.park
blob: fcdba39d7fe728a38aa4382247ac57db5b074a66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
"""Tests that a FAIL is detected by the testbot."""


import lldbsuite.test.lldbtest as lldbtest


class FailTestCase(lldbtest.TestBase):
    """Forces test failure."""
    mydir = lldbtest.TestBase.compute_mydir(__file__)

    def test_buildbot_catches_failure(self):
        """Issues a failing test assertion."""
        self.assertTrue(
            False,
            "This will always fail, buildbot should flag this.")
OpenPOWER on IntegriCloud