Skip to content

Commit 2ac7c4c

Browse files
committed
[lldb] Disable po tests in TestSwiftPOSysTypes
1 parent de23e76 commit 2ac7c4c

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

lldb/test/API/lang/swift/po/sys_types/main.swift

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,10 @@ func main() {
2929
#endif
3030
//% self.expect("po nsarr", substrs = ['1','2','3','4'])
3131
var nsobject = NSObject() //% self.expect("po clr", substrs = ['1 0 0 1']) # may change depending on OS/platform
32-
var any: Any = 1234 //% self.expect("po nsobject", substrs = ['<NSObject: 0x']) # may change depending on OS/platform
33-
//% self.expect("script lldb.frame.FindVariable('nsobject').GetObjectDescription()", substrs = ['<NSObject: 0x']) # may change depending on OS/platform
32+
// Disabled: rdar://106152599
33+
// self.expect("po nsobject", substrs = ['<NSObject: 0x']) # may change depending on OS/platform
34+
// self.expect("script lldb.frame.FindVariable('nsobject').GetObjectDescription()", substrs = ['<NSObject: 0x']) # may change depending on OS/platform
35+
var any: Any = 1234
3436
var anyobject: AnyObject = 1234 as NSNumber //% self.expect("po any", substrs = ['1234'])
3537
var notification = Notification(name: Notification.Name(rawValue: "JustANotification"), object: nil)
3638
print("yay I am done!") //% self.expect("po notification", substrs=['JustANotification'])

0 commit comments

Comments
 (0)