Remove the test override of `target.prefer-dynamic-value`. Previously, the lldb default was `no-dynamic-values`. In rG9aa7e8e9ffbe (in 2015), the default was changed to `no-run-target`, but at that time the tests were changed to be run with `no-dynamic-value`. I don't know the reasons for not changing the tests, perhaps to avoid determining which tests to change, and what about them to change. Because `no-run-target` is the lldb default, I think it makes sense to make it the test default too. It puts the test config closer to what's used in practice. This change removes the `target.prefer-dynamic-value` override, and for those tests that failed, they have been updated to explicitly use `no-dynamic-values`. Future changes could update these tests to use dynamic values too, or they can be left as is to exercise non-dynamic typing. Differential Revision: https://reviews.llvm.org/D132382
36 lines
940 B
Python
36 lines
940 B
Python
"""
|
|
This is a sanity check that verifies that test can be sklipped based on settings.
|
|
"""
|
|
|
|
|
|
import lldb
|
|
from lldbsuite.test.lldbtest import *
|
|
from lldbsuite.test.decorators import *
|
|
|
|
|
|
class SettingSkipSanityTestCase(TestBase):
|
|
|
|
NO_DEBUG_INFO_TESTCASE = True
|
|
|
|
@skipIf(py_version=('>=', (3, 0)))
|
|
def testSkip(self):
|
|
"""This setting is on by default"""
|
|
self.assertTrue(False, "This test should not run!")
|
|
|
|
@skipIf(py_version=('<', (3, 0)))
|
|
def testNoMatch(self):
|
|
self.assertTrue(True, "This test should run!")
|
|
|
|
@skipIf(setting=('target.i-made-this-one-up', 'true'))
|
|
def testNotExisting(self):
|
|
self.assertTrue(True, "This test should run!")
|
|
|
|
@expectedFailureAll(py_version=('>=', (3, 0)))
|
|
def testXFAIL(self):
|
|
self.assertTrue(False, "This test should run and fail!")
|
|
|
|
@expectedFailureAll(py_version=('<', (3, 0)))
|
|
def testNotXFAIL(self):
|
|
self.assertTrue(True, "This test should run and succeed!")
|
|
|