diff --git a/lldb/test/API/lang/swift/accelerate_simd/main.swift b/lldb/test/API/lang/swift/accelerate_simd/main.swift index f9a7a7ae53885..0cd0702148a77 100644 --- a/lldb/test/API/lang/swift/accelerate_simd/main.swift +++ b/lldb/test/API/lang/swift/accelerate_simd/main.swift @@ -2,9 +2,10 @@ func main() -> Int { let d4 = SIMD4(1.5, 2, 3, 4) let patatino = SIMD4(1,2,3,4) let tinky = SIMD2(12, 24) - return 0 //%self.expect('frame variable d4', substrs=['1.5', '2', '3', '4']) - //%self.expect('frame var patatino', substrs=['(1, 2, 3, 4)']) - //%self.expect('frame var tinky', substrs=['(12, 24)']) + print((d4, patatino, tinky)) //%self.expect('frame variable d4', substrs=['1.5', '2', '3', '4']) + //%self.expect('frame var patatino', substrs=['(1, 2, 3, 4)']) + //%self.expect('frame var tinky', substrs=['(12, 24)']) + return 0 } main()