Skip to content

Commit 83ad679

Browse files
committed
Use a better workaround for rdar://problem/25587546
1 parent 618cb95 commit 83ad679

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,21 +15,21 @@
1515
class ObjCDataFormatterNSError(ObjCDataFormatterTestCase):
1616

1717
@skipUnlessDarwin
18-
@expectedFailureAll(debug_info=["dwarf", "dsym", "dwo"], bugnumber="rdar://25587546")
1918
def test_nserror_with_run_command(self):
2019
"""Test formatters for NSError."""
2120
self.appkit_tester_impl(self.nserror_data_formatter_commands)
2221

2322
def nserror_data_formatter_commands(self):
2423
self.expect(
2524
'frame variable nserror', substrs=['domain: @"Foobar" - code: 12'])
26-
25+
2726
self.expect(
2827
'frame variable nserrorptr',
2928
substrs=['domain: @"Foobar" - code: 12'])
3029

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

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

0 commit comments

Comments
 (0)