Skip to content

Commit f4c2b49

Browse files
Merge pull request #2115 from adrian-prantl/25587546-stable
Use a better workaround for rdar://problem/25587546
2 parents 626140e + 4485035 commit f4c2b49

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

lldb/test/API/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjCNSError.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,14 @@ def test_nserror_with_run_command(self):
2222
def nserror_data_formatter_commands(self):
2323
self.expect(
2424
'frame variable nserror', substrs=['domain: @"Foobar" - code: 12'])
25-
25+
2626
self.expect(
2727
'frame variable nserrorptr',
2828
substrs=['domain: @"Foobar" - code: 12'])
2929

30+
# FIXME: <rdar://problem/25587546> On llvm.org this works without the `-d run`!
3031
self.expect(
31-
'frame variable nserror->_userInfo', substrs=['2 key/value pairs'])
32+
'frame variable -d run -- nserror->_userInfo', substrs=['2 key/value pairs'])
3233

3334
self.expect(
3435
'frame variable nserror->_userInfo --ptr-depth 1 -d run-target',

0 commit comments

Comments
 (0)