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
79 lines
2.4 KiB
Python
79 lines
2.4 KiB
Python
"""Test that the Objective-C syntax for dictionary/array literals and indexing works"""
|
|
|
|
|
|
import lldb
|
|
from lldbsuite.test.decorators import *
|
|
from lldbsuite.test.lldbtest import *
|
|
from lldbsuite.test import lldbutil
|
|
|
|
from ObjCNewSyntaxTest import ObjCNewSyntaxTest
|
|
|
|
|
|
class ObjCNewSyntaxTestCaseLiteral(ObjCNewSyntaxTest):
|
|
|
|
@skipIf(macos_version=["<", "10.12"])
|
|
@expectedFailureAll(archs=["i[3-6]86"])
|
|
def test_char_literal(self):
|
|
self.runToBreakpoint()
|
|
|
|
self.expect("expr --object-description -- @'a'",
|
|
VARIABLES_DISPLAYED_CORRECTLY, substrs=[str(ord('a'))])
|
|
|
|
@skipIf(macos_version=["<", "10.12"])
|
|
@expectedFailureAll(archs=["i[3-6]86"])
|
|
def test_integer_literals(self):
|
|
self.runToBreakpoint()
|
|
|
|
self.expect(
|
|
"expr --object-description -- @1",
|
|
VARIABLES_DISPLAYED_CORRECTLY,
|
|
substrs=["1"])
|
|
|
|
self.expect(
|
|
"expr --object-description -- @1l",
|
|
VARIABLES_DISPLAYED_CORRECTLY,
|
|
substrs=["1"])
|
|
|
|
self.expect(
|
|
"expr --object-description -- @1ul",
|
|
VARIABLES_DISPLAYED_CORRECTLY,
|
|
substrs=["1"])
|
|
|
|
self.expect(
|
|
"expr --object-description -- @1ll",
|
|
VARIABLES_DISPLAYED_CORRECTLY,
|
|
substrs=["1"])
|
|
|
|
self.expect(
|
|
"expr --object-description -- @1ull",
|
|
VARIABLES_DISPLAYED_CORRECTLY,
|
|
substrs=["1"])
|
|
|
|
@skipIf(macos_version=["<", "10.12"])
|
|
@expectedFailureAll(archs=["i[3-6]86"])
|
|
def test_float_literal(self):
|
|
self.runToBreakpoint()
|
|
|
|
self.runCmd("settings set target.prefer-dynamic-value no-dynamic-values")
|
|
|
|
self.expect("expr -- @123.45", VARIABLES_DISPLAYED_CORRECTLY,
|
|
substrs=["NSNumber", "123.45"])
|
|
|
|
@skipIf(macos_version=["<", "10.12"])
|
|
@expectedFailureAll(archs=["i[3-6]86"])
|
|
def test_expressions_in_literals(self):
|
|
self.runToBreakpoint()
|
|
|
|
self.runCmd("settings set target.prefer-dynamic-value no-dynamic-values")
|
|
|
|
self.expect(
|
|
"expr --object-description -- @( 1 + 3 )",
|
|
VARIABLES_DISPLAYED_CORRECTLY,
|
|
substrs=["4"])
|
|
self.expect(
|
|
"expr -- @((char*)\"Hello world\" + 6)",
|
|
VARIABLES_DISPLAYED_CORRECTLY,
|
|
substrs=[
|
|
"NSString",
|
|
"world"])
|