[swift-lldb-dev] [Swift CI] Build Failure: 0. OSS - LLDB Incremental - OS X (master) #371

Pavel Yaskevich pyaskevich at apple.com
Thu Nov 9 19:39:38 CST 2017


> On Nov 9, 2017, at 3:59 PM, Jim Ingham <jingham at apple.com> wrote:
> 
> What should happen is that the first location gets attributed to line number 0 - that’s our convention for utility code.  Then breakpoints will work correctly and stepping won’t stop in useless places, etc.

What changes do you think might have caused this problem?

> 
> Jim
> 
> 
>> On Nov 9, 2017, at 3:56 PM, Jim Ingham <jingham at apple.com <mailto:jingham at apple.com>> wrote:
>> 
>> Yeah, what’s probably happening is that this source line is triggering some support code to get generated that isn’t in any useful scope, but it’s getting misattributed to the line that caused the generation.  That’s actually a fairly common error in swift debug information.
>> 
>> Jim
>> 
>>> On Nov 9, 2017, at 3:55 PM, Pavel Yaskevich <pyaskevich at apple.com <mailto:pyaskevich at apple.com>> wrote:
>>> 
>>> 
>>> 
>>>> On Nov 9, 2017, at 3:54 PM, Jim Ingham <jingham at apple.com <mailto:jingham at apple.com>> wrote:
>>>> 
>>>> Yeah, it’s interesting to note that for main1.swift, setting the breakpoint gets only one location and that one works:
>>>> 
>>>> (lldb) b s -p "Set breakpoint here"
>>>> Breakpoint 1: where = a.out`a.main() -> () + 29 at main.swift:19, address = 0x000000010000152d
>>>> 
>>>> and that breakpoint works correctly.
>>>> 
>>>> But when you do the same thing with main2.swift, I get two locations:
>>>> 
>>>> (lldb) break set -p "Set breakpoint here"
>>>> Breakpoint 1: 2 locations.
>>>> (lldb) break list
>>>> Current breakpoints:
>>>> 1: source regex = "Set breakpoint here", exact_match = 0, locations = 2, resolved = 2, hit count = 2
>>>>   1.1: where = a.out`a.main() -> () + 24 at main.swift:20, address = 0x0000000100001428, resolved, hit count = 1 
>>>>   1.2: where = a.out`a.main() -> () + 72 at main.swift:20, address = 0x0000000100001458, resolved, hit count = 1 
>>> 
>>> That’s weird and they both point ot the same line in the source…
>>> 
>>>> 
>>>> the first one seems bogus, since if I do:
>>>> 
>>>> (lldb) run
>>>> Process 685 launched: '/Users/jingham/Work/LLDB/github/lldb-clean/test/testcases/lang/swift/struct_change_rerun/a.out' (x86_64)
>>>> Process 685 stopped
>>>> * thread #1, queue = 'com.apple.main-thread', stop reason = breakpoint 1.1
>>>>     frame #0: 0x0000000100001428 a.out`a.main() -> () at main.swift:20
>>>>    17  	
>>>>    18  	func main() {
>>>>    19  		var a = MyStruct()
>>>> -> 20  		print(a.a) // Set breakpoint here
>>>>     		        ^
>>>>    21  	}
>>>>    22  	
>>>>    23  	main()
>>>> Target 0: (a.out) stopped.
>>>> (lldb) frame var
>>>> (lldb) c
>>>> Process 685 resuming
>>>> Process 685 stopped
>>>> * thread #1, queue = 'com.apple.main-thread', stop reason = breakpoint 1.2
>>>>     frame #0: 0x0000000100001458 a.out`a.main() -> () at main.swift:20
>>>>    17  	
>>>>    18  	func main() {
>>>>    19  		var a = MyStruct()
>>>> -> 20  		print(a.a) // Set breakpoint here
>>>>     		        ^
>>>>    21  	}
>>>>    22  	
>>>>    23  	main()
>>>> Target 0: (a.out) stopped.
>>>> (lldb) frame var
>>>> (a.MyStruct) a = (a = 12, b = "Hey", c = 12.125)
>>>> 
>>>> the second one seems right.
>>>> 
>>>> Jim
>>>> 
>>>> 
>>>> 
>>>>> On Nov 9, 2017, at 3:49 PM, Pavel Yaskevich <pyaskevich at apple.com <mailto:pyaskevich at apple.com>> wrote:
>>>>> 
>>>>> 
>>>>> 
>>>>>> On Nov 9, 2017, at 3:48 PM, Jason Molenda <jmolenda at apple.com <mailto:jmolenda at apple.com>> wrote:
>>>>>> 
>>>>>> Once we're outside of the debug information and assembly instructions, I'm not useful. :)
>>>>> 
>>>>> No problem, thanks for your help! Slava, Michael - can you guys please take a look?
>>>>> 
>>>>>> 
>>>>>> The only difference between these two source files is the size of the struct in main2.swift is larger (has a float member) than main1.swift; there's quite a few additional instructions after the init() call to get the object:
>>>>>> 
>>>>>>>> (lldb) dis
>>>>>>>> main1`main():
>>>>>>>>  0x1000015d0 <+0>:   pushq  %rbp
>>>>>>>>  0x1000015d1 <+1>:   movq   %rsp, %rbp
>>>>>>>>  0x1000015d4 <+4>:   subq   $0x70, %rsp
>>>>>>>>  0x1000015d8 <+8>:   callq  0x100001560               ; main1.MyStruct.init() -> main1.MyStruct at main1.swift:12
>>>>>>>>  0x1000015dd <+13>:  movq   %rax, -0x20(%rbp)
>>>>>>>>  0x1000015e1 <+17>:  movq   %rdx, -0x18(%rbp)
>>>>>>>>  0x1000015e5 <+21>:  movq   %rcx, -0x10(%rbp)
>>>>>>>>  0x1000015e9 <+25>:  movq   %r8, -0x8(%rbp)
>>>>>>>> ->  0x1000015ed <+29>:  movl   $0x1, %esi
>>>>>>>>  0x1000015f2 <+34>:  movl   %esi, %edi
>>>>>>>> 
>>>>>>>> 
>>>>>>>> main2.swift:
>>>>>>>> 
>>>>>>>> (lldb) dis
>>>>>>>> main2`main():
>>>>>>>>  0x1000014d0 <+0>:   pushq  %rbp
>>>>>>>>  0x1000014d1 <+1>:   movq   %rsp, %rbp
>>>>>>>>  0x1000014d4 <+4>:   subq   $0xb0, %rsp
>>>>>>>>  0x1000014db <+11>:  leaq   -0x30(%rbp), %rax
>>>>>>>>  0x1000014df <+15>:  movq   %rax, -0x60(%rbp)
>>>>>>>>  0x1000014e3 <+19>:  callq  0x100001430               ; main2.MyStruct.init() -> main2.MyStruct at main2.swift:12
>>>>>>>> ->  0x1000014e8 <+24>:  movq   -0x30(%rbp), %rax
>>>>>>>>  0x1000014ec <+28>:  movq   -0x28(%rbp), %rcx
>>>>>>>>  0x1000014f0 <+32>:  movq   %rax, -0x8(%rbp)
>>>>>>>>  0x1000014f4 <+36>:  movq   -0x8(%rbp), %rdx
>>>>>>>>  0x1000014f8 <+40>:  movq   %rax, -0x58(%rbp)
>>>>>>>>  0x1000014fc <+44>:  movq   %rcx, -0x50(%rbp)
>>>>>>>>  0x100001500 <+48>:  movq   -0x20(%rbp), %rax
>>>>>>>>  0x100001504 <+52>:  movq   %rax, -0x48(%rbp)
>>>>>>>>  0x100001508 <+56>:  movq   -0x18(%rbp), %rax
>>>>>>>>  0x10000150c <+60>:  movq   %rax, -0x40(%rbp)
>>>>>>>>  0x100001510 <+64>:  movq   -0x10(%rbp), %rax
>>>>>>>>  0x100001514 <+68>:  movq   %rax, -0x38(%rbp)
>>>>>>>>  0x100001518 <+72>:  movl   $0x1, %esi
>>>>>> 
>>>>>> 
>>>>>> 
>>>>>> The lexical block starts with 'movl $1, %esi' in both cases.  In main1, that mov 1 corresponds to the line table entry for line 19,
>>>>>> 
>>>>>> 0x00000001000015d4: /tmp/repo/main1.swift:18:19
>>>>>> 0x00000001000015ed: /tmp/repo/main1.swift:19:10
>>>>>> 0x0000000100001611: /tmp/repo/main1.swift
>>>>>> 0x000000010000161e: /tmp/repo/main1.swift:19:10
>>>>>> 0x000000010000164a: /tmp/repo/main1.swift:19:11
>>>>>> 0x0000000100001673: /tmp/repo/main1.swift:20:1
>>>>>> 0x0000000100001682: /tmp/repo/main1.swift:20:1
>>>>>> 
>>>>>> 
>>>>>> so when we put the breakpoint on line 19, we're at 0x00000001000015ed which is inside the lexical scope.
>>>>>> 
>>>>>> But in main2, the linetable entry for line 20 (0x1000014e8) is much earlier -- I believe we're still retrieving the struct members from the init() method call.
>>>>>> 
>>>>>> 
>>>>>> 
>>>>>>> On Nov 9, 2017, at 3:36 PM, Pavel Yaskevich <pyaskevich at apple.com <mailto:pyaskevich at apple.com>> wrote:
>>>>>>> 
>>>>>>> Thank you Jason for such detailed analysis! Is that related to the changes to in SIL then?
>>>>>>> 
>>>>>>>> On Nov 9, 2017, at 3:21 PM, Jason Molenda <jmolenda at apple.com <mailto:jmolenda at apple.com>> wrote:
>>>>>>>> 
>>>>>>>> 
>>>>>>>> 
>>>>>>>>> On Nov 9, 2017, at 2:39 PM, Pavel Yaskevich via swift-lldb-dev <swift-lldb-dev at swift.org <mailto:swift-lldb-dev at swift.org>> wrote:
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>>> On Nov 9, 2017, at 2:34 PM, Jim Ingham <jingham at apple.com <mailto:jingham at apple.com>> wrote:
>>>>>>>>>> 
>>>>>>>>>> Yes, I can reproduce the failure locally.  I don't build lldb quite the way you do, I just checkout the lldb branch in question (I'm using stable):
>>>>>>>>>> 
>>>>>>>>>>> git clone ssh://git@github.com/apple/swift-lldb.git <ssh://git@github.com/apple/swift-lldb.git> lldb-stable
>>>>>>>>>>> cd lldb-stable
>>>>>>>>>>> git checkout stable
>>>>>>>>>>> xcodebuild -configuration DebugClang
>>>>>>>>>> 
>>>>>>>>>> That checks out the appropriate versions of llvm/clang/swift and then builds everything.
>>>>>>>>>> 
>>>>>>>>>> But I don't think the manner of building should matter much, swift gets built the same way in either case, and I haven't seen any differences between the "lldb-focused" and the "swift-focused" build methods in a long time.
>>>>>>>>>> 
>>>>>>>>>> Anyway once built, it's much easier, since you're just tracking one failure - to just run that one test by doing:
>>>>>>>>>> 
>>>>>>>>>> $ cd lldb/test
>>>>>>>>>> $ ./dotest.py testcases/lang/swift/struct_change_rerun/
>>>>>>>>> 
>>>>>>>>> Ok, let me try that way but it doesn’t really help to git bisect changes in swift which might have caused that...
>>>>>>>> 
>>>>>>>> 
>>>>>>>> 
>>>>>>>> 
>>>>>>>> The test has two source files,
>>>>>>>> 
>>>>>>>> 
>>>>>>>> <main1.swift><main2.swift>
>>>>>>>> 
>>>>>>>> It tries to look at the local variable "a" in both of these.  The details of how it's examining that are not important.  They're being compiled like
>>>>>>>> 
>>>>>>>> /Volumes/newwork/github/stable/lldb/llvm-build/Ninja-RelWithDebInfoAssert/swift-macosx-x86_64/bin/swiftc main1.swift -g -Onone -save-temps -Xfrontend -serialize-debugging-options -module-cache-path /tmp/lldbtest.swift.modulecache.root -sdk "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk" -o "main1"
>>>>>>>> 
>>>>>>>> 
>>>>>>>> /Volumes/newwork/github/stable/lldb/llvm-build/Ninja-RelWithDebInfoAssert/swift-macosx-x86_64/bin/swiftc main2.swift -g -Onone -save-temps -Xfrontend -serialize-debugging-options -module-cache-path /tmp/lldbtest.swift.modulecache.root -sdk "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk" -o "main2"
>>>>>>>> 
>>>>>>>> 
>>>>>>>> In main1.swift, lldb can see the local "a".  In main2.swift, it doesn't see "a".  The function is
>>>>>>>> 
>>>>>>>> func main() {
>>>>>>>> 	var a = MyStruct()
>>>>>>>> 	print(a.a) // Set breakpoint here
>>>>>>>> }
>>>>>>>> 
>>>>>>>> and we're stopped on the print() line.
>>>>>>>> 
>>>>>>>> 
>>>>>>>> main1.swift:
>>>>>>>> 
>>>>>>>> (lldb) dis
>>>>>>>> main1`main():
>>>>>>>>  0x1000015d0 <+0>:   pushq  %rbp
>>>>>>>>  0x1000015d1 <+1>:   movq   %rsp, %rbp
>>>>>>>>  0x1000015d4 <+4>:   subq   $0x70, %rsp
>>>>>>>>  0x1000015d8 <+8>:   callq  0x100001560               ; main1.MyStruct.init() -> main1.MyStruct at main1.swift:12
>>>>>>>>  0x1000015dd <+13>:  movq   %rax, -0x20(%rbp)
>>>>>>>>  0x1000015e1 <+17>:  movq   %rdx, -0x18(%rbp)
>>>>>>>>  0x1000015e5 <+21>:  movq   %rcx, -0x10(%rbp)
>>>>>>>>  0x1000015e9 <+25>:  movq   %r8, -0x8(%rbp)
>>>>>>>> ->  0x1000015ed <+29>:  movl   $0x1, %esi
>>>>>>>>  0x1000015f2 <+34>:  movl   %esi, %edi
>>>>>>>> 
>>>>>>>> 
>>>>>>>> main2.swift:
>>>>>>>> 
>>>>>>>> (lldb) dis
>>>>>>>> main2`main():
>>>>>>>>  0x1000014d0 <+0>:   pushq  %rbp
>>>>>>>>  0x1000014d1 <+1>:   movq   %rsp, %rbp
>>>>>>>>  0x1000014d4 <+4>:   subq   $0xb0, %rsp
>>>>>>>>  0x1000014db <+11>:  leaq   -0x30(%rbp), %rax
>>>>>>>>  0x1000014df <+15>:  movq   %rax, -0x60(%rbp)
>>>>>>>>  0x1000014e3 <+19>:  callq  0x100001430               ; main2.MyStruct.init() -> main2.MyStruct at main2.swift:12
>>>>>>>> ->  0x1000014e8 <+24>:  movq   -0x30(%rbp), %rax
>>>>>>>>  0x1000014ec <+28>:  movq   -0x28(%rbp), %rcx
>>>>>>>>  0x1000014f0 <+32>:  movq   %rax, -0x8(%rbp)
>>>>>>>>  0x1000014f4 <+36>:  movq   -0x8(%rbp), %rdx
>>>>>>>>  0x1000014f8 <+40>:  movq   %rax, -0x58(%rbp)
>>>>>>>>  0x1000014fc <+44>:  movq   %rcx, -0x50(%rbp)
>>>>>>>>  0x100001500 <+48>:  movq   -0x20(%rbp), %rax
>>>>>>>>  0x100001504 <+52>:  movq   %rax, -0x48(%rbp)
>>>>>>>>  0x100001508 <+56>:  movq   -0x18(%rbp), %rax
>>>>>>>>  0x10000150c <+60>:  movq   %rax, -0x40(%rbp)
>>>>>>>>  0x100001510 <+64>:  movq   -0x10(%rbp), %rax
>>>>>>>>  0x100001514 <+68>:  movq   %rax, -0x38(%rbp)
>>>>>>>>  0x100001518 <+72>:  movl   $0x1, %esi
>>>>>>>> 
>>>>>>>> 
>>>>>>>> 
>>>>>>>> the debug info for main1.swift says that the lexical block containing "a" extends for nearly the entire range of the function:
>>>>>>>> 
>>>>>>>> 0x000001e4:         TAG_subprogram [6] *
>>>>>>>>                   AT_low_pc( 0x00000001000015d0 )
>>>>>>>>                   AT_high_pc( 0x000000b2 )
>>>>>>>>                   AT_frame_base( rbp )
>>>>>>>>                   AT_linkage_name( "_T05main14mainyyF" )
>>>>>>>>                   AT_name( "main" )
>>>>>>>>                   AT_decl_file( "/private/tmp/repo/main1.swift" )
>>>>>>>>                   AT_decl_line( 17 )
>>>>>>>>                   AT_type( {0x0000039a} ( _T0ytD ) )
>>>>>>>>                   AT_external( true )
>>>>>>>> 
>>>>>>>> 0x00000201:             TAG_lexical_block [11] *
>>>>>>>>                       AT_low_pc( 0x00000001000015d4 )
>>>>>>>>                       AT_high_pc( 0x000000ae )
>>>>>>>> 
>>>>>>>> 0x0000020e:                 TAG_variable [10]  
>>>>>>>>                           AT_location( fbreg -32 )
>>>>>>>>                           AT_name( "a" )
>>>>>>>>                           AT_decl_file( "/private/tmp/repo/main1.swift" )
>>>>>>>>                           AT_decl_line( 18 )
>>>>>>>>                           AT_type( {0x00000072} ( MyStruct ) )
>>>>>>>> 
>>>>>>>> 
>>>>>>>> (the DW_AT_low_pc of the lexical block is the callq instruction)
>>>>>>>> 
>>>>>>>> but the debug info for main2.swift has the lexical block starting much later
>>>>>>>> 
>>>>>>>> 0x0000027f:         TAG_subprogram [6] *
>>>>>>>>                   AT_low_pc( 0x00000001000014d0 )
>>>>>>>>                   AT_high_pc( 0x000000fb )
>>>>>>>>                   AT_frame_base( rbp )
>>>>>>>>                   AT_linkage_name( "_T05main24mainyyF" )
>>>>>>>>                   AT_name( "main" )
>>>>>>>>                   AT_decl_file( "/private/tmp/repo/main2.swift" )
>>>>>>>>                   AT_decl_line( 18 )
>>>>>>>>                   AT_type( {0x00000454} ( _T0ytD ) )
>>>>>>>>                   AT_external( true )
>>>>>>>> 
>>>>>>>> 0x0000029c:             TAG_lexical_block [12] *
>>>>>>>>                       AT_low_pc( 0x0000000100001518 )
>>>>>>>>                       AT_high_pc( 0x000000b3 )
>>>>>>>> 
>>>>>>>> 0x000002a9:                 TAG_variable [7]  
>>>>>>>>                           AT_location( fbreg -88 )
>>>>>>>>                           AT_name( "a" )
>>>>>>>>                           AT_decl_file( "/private/tmp/repo/main2.swift" )
>>>>>>>>                           AT_decl_line( 19 )
>>>>>>>>                           AT_type( {0x00000072} ( MyStruct ) )
>>>>>>>> 
>>>>>>>> 
>>>>>>>> 
>>>>>>>> Our breakpoint on source line 20 ("print(a.a) // Set breakpoint here") in main2.swift is not inside the lexical block of the function, so we don't think the local variable "a" is available.  That's what's going wrong here.  The line table entry for line 20 in main2.swift,
>>>>>>>> 
>>>>>>>> (lldb) target modules dump line-table main2.swift
>>>>>>>> 
>>>>>>>> 0x00000001000014d0: /tmp/repo/main2.swift:18
>>>>>>>> 0x00000001000014df: /tmp/repo/main2.swift:19:19
>>>>>>>> 0x00000001000014e8: /tmp/repo/main2.swift:20:10
>>>>>>>> 0x00000001000014ec: /tmp/repo/main2.swift:19:19
>>>>>>>> 0x00000001000014f0: /tmp/repo/main2.swift:20:10
>>>>>>>> 0x00000001000014f8: /tmp/repo/main2.swift:19:19
>>>>>>>> 0x0000000100001518: /tmp/repo/main2.swift:20:10
>>>>>>>> 0x0000000100001538: /tmp/repo/main2.swift
>>>>>>>> 0x0000000100001545: /tmp/repo/main2.swift:20:10
>>>>>>>> 0x000000010000157a: /tmp/repo/main2.swift:20:11
>>>>>>>> 0x00000001000015b2: /tmp/repo/main2.swift
>>>>>>>> 0x00000001000015bb: /tmp/repo/main2.swift:21:1
>>>>>>>> 0x00000001000015cb: /tmp/repo/main2.swift:21:1
>>>>>>>> 
>>>>>>>> 
>>>>>>>> 
>>>>>>>> 
>>>>>>>> is 0x00000001000014e8, where lldb has stopped, but the debug info also says that we're not in the lexical block.
>>>>>>>> 
>>>>>>>> 
>>>>>>>> 
>>>>>>>> 
>>>>>>>> 
>>>>>>>>> 
>>>>>>>>>> 
>>>>>>>>>> And indeed that does fail for me, I see:
>>>>>>>>>> 
>>>>>>>>>> LLDB library dir: /Volumes/Gonzales/lldb-sources/github/lldb-working/build/DebugClang
>>>>>>>>>> LLDB import library dir: /Volumes/Gonzales/lldb-sources/github/lldb-working/build/DebugClang
>>>>>>>>>> lldb version 5.0.0
>>>>>>>>>> Swift-4.1 (revision 6d9a4b52ef0bf3895fa22eb964a544a32335727b)
>>>>>>>>>> clang revision 4e3e8c776a24b6fe78bfa80a96ba51317bac042d
>>>>>>>>>> llvm revision 5edfbd5ae2974ec0b04be09a1bebdc746952ebb7
>>>>>>>>>> 
>>>>>>>>>> Session logs for test failures/errors/unexpected successes will go into directory '2017-11-09-14_17_29'
>>>>>>>>>> Command invoked: ./dotest.py testcases/lang/swift/struct_change_rerun/
>>>>>>>>>> compiler=/Volumes/Gonzales/Xcodes/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang
>>>>>>>>>> 
>>>>>>>>>> Configuration: arch=x86_64 compiler=/Volumes/Gonzales/Xcodes/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang
>>>>>>>>>> ----------------------------------------------------------------------
>>>>>>>>>> Collected 3 tests
>>>>>>>>>> 
>>>>>>>>>> build with main1.swift
>>>>>>>>>> (a.MyStruct) $R0 = (a = Swift.Int @ 0x00007fec7eb55a50, b = "Hey")
>>>>>>>>>> build with main2.swift
>>>>>>>>>> = <could not resolve type>
>>>>>>>>>> ======================================================================
>>>>>>>>>> FAIL: test_swift_struct_change_rerun_dsym (TestSwiftStructChangeRerun.TestSwiftStructChangeRerun)
>>>>>>>>>> Test that we display self correctly for an inline-initialized struct
>>>>>>>>>> ----------------------------------------------------------------------
>>>>>>>>>> Traceback (most recent call last):
>>>>>>>>>> File "/Volumes/Gonzales/lldb-sources/github/lldb-working/packages/Python/lldbsuite/test/lldbtest.py", line 1722, in dsym_test_method
>>>>>>>>>> return attrvalue(self)
>>>>>>>>>> File "/Volumes/Gonzales/lldb-sources/github/lldb-working/packages/Python/lldbsuite/test/decorators.py", line 141, in wrapper
>>>>>>>>>> func(*args, **kwargs)
>>>>>>>>>> File "/Volumes/Gonzales/lldb-sources/github/lldb-working/packages/Python/lldbsuite/test/decorators.py", line 141, in wrapper
>>>>>>>>>> func(*args, **kwargs)
>>>>>>>>>> File "/Volumes/Gonzales/lldb-sources/github/lldb-working/packages/Python/lldbsuite/test/lang/swift/struct_change_rerun/TestSwiftStructChangeRerun.py", line 32, in test_swift_struct_change_rerun
>>>>>>>>>> self.do_test(True)
>>>>>>>>>> File "/Volumes/Gonzales/lldb-sources/github/lldb-working/packages/Python/lldbsuite/test/lang/swift/struct_change_rerun/TestSwiftStructChangeRerun.py", line 119, in do_test
>>>>>>>>>> lldbutil.check_variable(self, var_a_a, False, value="12")
>>>>>>>>>> File "/Volumes/Gonzales/lldb-sources/github/lldb-working/packages/Python/lldbsuite/test/lldbutil.py", line 1200, in check_variable
>>>>>>>>>> (valobj.GetName() if valobj else "<unknown>"))
>>>>>>>>>> AssertionError: False is not True : variable <unknown> is not valid
>>>>>>>>>> Config=x86_64-/Volumes/Gonzales/Xcodes/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang
>>>>>>>>>> ----------------------------------------------------------------------
>>>>>>>>>> Ran 3 tests in 22.536s
>>>>>>>>>> 
>>>>>>>>>> RESULT: FAILED (0 passes, 1 failures, 0 errors, 2 skipped, 0 expected failures, 0 unexpected successes)
>>>>>>>>>> Session logs for test failures/errors/unexpected successes can be found in directory '2017-11-09-14_17_29'
>>>>>>>>>> 
>>>>>>>>>> Which is pretty much what the bot shows.
>>>>>>>>>> 
>>>>>>>>>> Jim
>>>>>>>>>> 
>>>>>>>>>> 
>>>>>>>>>> 
>>>>>>>>>>> On Nov 9, 2017, at 2:28 PM, Pavel Yaskevich via swift-lldb-dev <swift-lldb-dev at swift.org <mailto:swift-lldb-dev at swift.org>> wrote:
>>>>>>>>>>> 
>>>>>>>>>>> 
>>>>>>>>>>> 
>>>>>>>>>>>> On Nov 9, 2017, at 2:24 PM, Jim Ingham <jingham at apple.com <mailto:jingham at apple.com>> wrote:
>>>>>>>>>>>> 
>>>>>>>>>>>> I've had a bunch of meetings today so I haven't gotten much further, but the same lldb sources pass the test with swift/master at 21982306b852f3b6e0b2cbcceaa831033addc21d but fail with swift/master at 6d9a4b52ef0bf3895fa22eb964a544a32335727b.  We have many other tests that do the same sort of operations, but not many (any?) that test rebuild & rerun.  And the failure is that we can't reconstruct the struct type.  When we go to print the variable of the test struct type, we see the error:
>>>>>>>>>>>> 
>>>>>>>>>>>> = <could not resolve type>
>>>>>>>>>>> 
>>>>>>>>>>> Can you reproduce this failure locally? I tried running —debug-lldb —test with master and I can’t reproduce it with our without my changes. I was hoping to do git bisect to figure this out.
>>>>>>>>>>> 
>>>>>>>>>>> This is what I run - `./utils/build-script -r --skip-build-benchmarks true --debug-lldb --lldb-use-system-debugserver --skip-test-cmark --skip-test-swift --test`
>>>>>>>>>>> 
>>>>>>>>>>>> 
>>>>>>>>>>>> Jim
>>>>>>>>>>>> 
>>>>>>>>>>>> 
>>>>>>>>>>>>> On Nov 9, 2017, at 2:14 PM, Pavel Yaskevich <pyaskevich at apple.com <mailto:pyaskevich at apple.com>> wrote:
>>>>>>>>>>>>> 
>>>>>>>>>>>>> 
>>>>>>>>>>>>> 
>>>>>>>>>>>>>> On Nov 9, 2017, at 1:31 PM, Jim Ingham <jingham at apple.com <mailto:jingham at apple.com>> wrote:
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> I haven't figured out what's up with this yet, but note this test is a little subtle.  It is testing the scenario: build and debug, stop at a point and print a structure, then change the program by adding a field to that structure, then rebuild and runs again and print the structure, we get it right the second time.
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> The first printing is succeeding.
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> The rerun printing is failing.
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> This makes it sound like some cache was added that we need to flush?  We will rebuild both the AST context for the main module, and the expression execution context so it's outside these two.
>>>>>>>>>>>>> 
>>>>>>>>>>>>> I’m not aware of any new caches which have been added, my changes changed a structure of cache entry for function metadata type, i’m not sure if that’s related though because it should be the same for the function which don’t have any parameter flags associated with them.
>>>>>>>>>>>>> 
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> Jim
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> On Nov 9, 2017, at 8:36 AM, Pavel Yaskevich via swift-lldb-dev <swift-lldb-dev at swift.org <mailto:swift-lldb-dev at swift.org>> wrote:
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> Looks like it failed in TestSwiftStructChangeRerun.py
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> var_a = self.frame.EvaluateExpression("a")
>>>>>>>>>>>>>>> print var_a
>>>>>>>>>>>>>>> var_a_a = var_a.GetChildMemberWithName("a")
>>>>>>>>>>>>>>> 	lldbutil.check_variable(self, var_a_a, False, value="12")
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> Any ideas what changes might have caused that? Mine only touch function metadata but this seems to be related to structs:
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> struct MyStruct {
>>>>>>>>>>>>>>> 	var a = 12
>>>>>>>>>>>>>>> 	var b = "Hey"
>>>>>>>>>>>>>>> }
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> func main() {
>>>>>>>>>>>>>>> 	var a = MyStruct()
>>>>>>>>>>>>>>> 	print(a.a) // Set breakpoint here
>>>>>>>>>>>>>>> }
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> main()
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> On Nov 8, 2017, at 4:26 PM, no-reply at swift.org <mailto:no-reply at swift.org> wrote:
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> [FAILURE] oss-lldb-incremental-osx [#371]
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> Build URL:	https://ci.swift.org/job/oss-lldb-incremental-osx/371/ <https://ci.swift.org/job/oss-lldb-incremental-osx/371/>
>>>>>>>>>>>>>>>> Project:	oss-lldb-incremental-osx
>>>>>>>>>>>>>>>> Date of build:	Wed, 08 Nov 2017 17:40:18 -0600
>>>>>>>>>>>>>>>> Build duration:	45 min
>>>>>>>>>>>>>>>> Identified problems:
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> 	• Regression test failed: This build failed because a regression test in the test suite FAILed. Below is a list of all errors:
>>>>>>>>>>>>>>>> 		• Indication 1
>>>>>>>>>>>>>>>> 	• Assertion failure: This build failed because of an assertion failure. Below is a list of all errors in the build log:
>>>>>>>>>>>>>>>> 		• Indication 1
>>>>>>>>>>>>>>>> Tests:
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> Name: Test-rdar-12481949
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: Test-rdar-9974002
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: Test11588
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: Test8638051
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestABIv2
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestAbbreviations
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestAddDsymCommand
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestAddDsymMidExecutionCommand
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestAddressBreakpoints
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestAnonymous
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 21 test(s), Total: 21 test(s)
>>>>>>>>>>>>>>>> Name: TestAppleTypesIsProduced
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 0 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestApropos
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestAproposWithProcess
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestArray
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 0 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestArrayTypes
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 6 test(s), Total: 6 test(s)
>>>>>>>>>>>>>>>> Name: TestAsanSwift
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestAttachDenied
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestAttachResume
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestAvoidBreakpointInDelaySlot
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 0 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestBSDArchives
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestBackticksWithoutATarget
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestBacktraceAll
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestBadAddressBreakpoints
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestBadReference
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 0 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestBatchMode
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 9 test(s), Total: 9 test(s)
>>>>>>>>>>>>>>>> Name: TestBenchmarkContinue
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 0 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestBenchmarkLibcxxList
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 0 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestBenchmarkLibcxxMap
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 0 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestBenchmarkSwiftDictionary
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 0 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestBitfields
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 6 test(s), Total: 6 test(s)
>>>>>>>>>>>>>>>> Name: TestBlocks
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 6 test(s), Total: 6 test(s)
>>>>>>>>>>>>>>>> Name: TestBoundViolation
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 0 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestBreakAfterJoin
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestBreakpointAPI
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 2 test(s), Total: 2 test(s)
>>>>>>>>>>>>>>>> Name: TestBreakpointAutoContinue
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestBreakpointCaseSensitivity
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 6 test(s)
>>>>>>>>>>>>>>>> Name: TestBreakpointCommand
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 9 test(s), Total: 9 test(s)
>>>>>>>>>>>>>>>> Name: TestBreakpointCommandsFromPython
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestBreakpointConditions
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 12 test(s), Total: 12 test(s)
>>>>>>>>>>>>>>>> Name: TestBreakpointHitCount
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestBreakpointIDs
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestBreakpointIgnoreCount
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 6 test(s), Total: 6 test(s)
>>>>>>>>>>>>>>>> Name: TestBreakpointLanguage
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 6 test(s), Total: 6 test(s)
>>>>>>>>>>>>>>>> Name: TestBreakpointLocations
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 9 test(s), Total: 9 test(s)
>>>>>>>>>>>>>>>> Name: TestBreakpointNames
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 6 test(s), Total: 6 test(s)
>>>>>>>>>>>>>>>> Name: TestBreakpointOptions
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestBreakpointSerialization
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 15 test(s), Total: 15 test(s)
>>>>>>>>>>>>>>>> Name: TestBreakpointSetRestart
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestBreakpointsWithNoTargets
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestBuiltinTrap
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestBulkyEnumsVariables
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestBundleWithDotInFilename
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestCGImportedTypes
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestCGTypes
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestCInlines
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestCModules
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestCPP11EnumTypes
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 24 test(s), Total: 24 test(s)
>>>>>>>>>>>>>>>> Name: TestCPPAuto
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestCPPBool
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestCPPBreakpointCommands
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestCPPBreakpointLocations
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 6 test(s), Total: 6 test(s)
>>>>>>>>>>>>>>>> Name: TestCPPExceptionBreakpoint
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestCPPExceptionBreakpoints
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestCPPStaticMembers
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestCPPStaticMethods
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestCPPThis
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestCStrings
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestCalculatorMode
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestCallCPPFunction
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestCallStdStringFunction
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestCallStopAndContinue
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestCallThatRestarts
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 0 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestCallThatThrows
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestCallUserAnonTypedef
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestCallUserDefinedFunction
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestCallWithTimeout
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestChangeProcessGroup
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestChangeValueAPI
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestChar1632T
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestClassConstrainedProtocol
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 4 test(s), Total: 4 test(s)
>>>>>>>>>>>>>>>> Name: TestClassTypes
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 12 test(s), Total: 12 test(s)
>>>>>>>>>>>>>>>> Name: TestClassTypesDisassembly
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 6 test(s), Total: 6 test(s)
>>>>>>>>>>>>>>>> Name: TestCommandHistory
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestCommandInterpreterAPI
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestCommandRegex
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestCommandScript
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestCommandScriptAlias
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestCommandScriptImmediateOutput
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 2 test(s), Total: 2 test(s)
>>>>>>>>>>>>>>>> Name: TestCommandSource
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestCommonShortSpellings
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestCompDirSymLink
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 6 test(s), Total: 9 test(s)
>>>>>>>>>>>>>>>> Name: TestCompactVectors
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestCompileRunToBreakpointTurnaround
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 0 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestCompletion
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 34 test(s), Total: 34 test(s)
>>>>>>>>>>>>>>>> Name: TestComplicatedExpression
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 0 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestConcurrentBreakpointDelayBreakpointOneSignal
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestConcurrentBreakpointOneDelayBreakpointThreads
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestConcurrentBreakpointsDelayedBreakpointOneWatchpoint
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestConcurrentCrashWithBreak
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestConcurrentCrashWithSignal
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestConcurrentCrashWithWatchpoint
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestConcurrentCrashWithWatchpointBreakpointSignal
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestConcurrentDelaySignalBreak
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestConcurrentDelaySignalWatch
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestConcurrentDelayWatchBreak
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestConcurrentDelayedCrashWithBreakpointSignal
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestConcurrentDelayedCrashWithBreakpointWatchpoint
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestConcurrentManyBreakpoints
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 0 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestConcurrentManyCrash
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 0 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestConcurrentManySignals
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 0 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestConcurrentManyWatchpoints
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 0 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestConcurrentNWatchNBreak
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestConcurrentSignalBreak
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestConcurrentSignalDelayBreak
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestConcurrentSignalDelayWatch
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestConcurrentSignalNWatchNBreak
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestConcurrentSignalWatch
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestConcurrentSignalWatchBreak
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestConcurrentTwoBreakpointThreads
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestConcurrentTwoBreakpointsOneDelaySignal
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestConcurrentTwoBreakpointsOneSignal
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestConcurrentTwoBreakpointsOneWatchpoint
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestConcurrentTwoWatchpointThreads
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestConcurrentTwoWatchpointsOneBreakpoint
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestConcurrentTwoWatchpointsOneDelayBreakpoint
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestConcurrentTwoWatchpointsOneSignal
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestConcurrentWatchBreak
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestConcurrentWatchBreakDelay
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestConcurrentWatchpointDelayWatchpointOneBreakpoint
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestConcurrentWatchpointWithDelayWatchpointThreads
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestConditionalBreak
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 6 test(s), Total: 6 test(s)
>>>>>>>>>>>>>>>> Name: TestConflictingDefinition
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestConflictingSymbol
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestConsecutiveBreakpoints
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestConstStrings
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestConstVariables
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestConvenienceVariables
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestCppChainedCalls
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestCppGlobalOperators
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 6 test(s), Total: 6 test(s)
>>>>>>>>>>>>>>>> Name: TestCppIncompleteTypes
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 6 test(s), Total: 6 test(s)
>>>>>>>>>>>>>>>> Name: TestCppNsImport
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestCppScope
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 6 test(s), Total: 6 test(s)
>>>>>>>>>>>>>>>> Name: TestCppValueCast
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 6 test(s), Total: 6 test(s)
>>>>>>>>>>>>>>>> Name: TestCrashDuringStep
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestCreateAfterAttach
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 6 test(s), Total: 6 test(s)
>>>>>>>>>>>>>>>> Name: TestCreateDuringInstructionStep
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 0 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestCreateDuringStep
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 9 test(s), Total: 9 test(s)
>>>>>>>>>>>>>>>> Name: TestCxxWCharT
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestDarwinLogBasic
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 0 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestDarwinLogFilterMatchActivity
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 0 test(s), Total: 4 test(s)
>>>>>>>>>>>>>>>> Name: TestDarwinLogFilterMatchActivityChain
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 0 test(s), Total: 4 test(s)
>>>>>>>>>>>>>>>> Name: TestDarwinLogFilterMatchCategory
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 0 test(s), Total: 4 test(s)
>>>>>>>>>>>>>>>> Name: TestDarwinLogFilterMatchMessage
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 0 test(s), Total: 4 test(s)
>>>>>>>>>>>>>>>> Name: TestDarwinLogFilterMatchSubsystem
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 0 test(s), Total: 4 test(s)
>>>>>>>>>>>>>>>> Name: TestDarwinLogFilterRegexActivity
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 0 test(s), Total: 5 test(s)
>>>>>>>>>>>>>>>> Name: TestDarwinLogFilterRegexActivityChain
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 0 test(s), Total: 5 test(s)
>>>>>>>>>>>>>>>> Name: TestDarwinLogFilterRegexCategory
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 0 test(s), Total: 5 test(s)
>>>>>>>>>>>>>>>> Name: TestDarwinLogFilterRegexMessage
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 0 test(s), Total: 5 test(s)
>>>>>>>>>>>>>>>> Name: TestDarwinLogFilterRegexSubsystem
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 0 test(s), Total: 6 test(s)
>>>>>>>>>>>>>>>> Name: TestDarwinLogMessageFormat
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 0 test(s), Total: 6 test(s)
>>>>>>>>>>>>>>>> Name: TestDarwinLogSourceDebug
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 0 test(s), Total: 2 test(s)
>>>>>>>>>>>>>>>> Name: TestDarwinLogSourceInfo
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 0 test(s), Total: 2 test(s)
>>>>>>>>>>>>>>>> Name: TestDarwinNSLogOutput
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 2 test(s), Total: 2 test(s)
>>>>>>>>>>>>>>>> Name: TestDataFormatterAdv
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestDataFormatterCategories
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestDataFormatterCpp
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestDataFormatterDisabling
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestDataFormatterEnumFormat
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestDataFormatterGlobals
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestDataFormatterHexCaps
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestDataFormatterLanguageCategoryUpdates
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestDataFormatterLibccIterator
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestDataFormatterLibccMap
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestDataFormatterLibccMultiMap
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestDataFormatterLibcxxList
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestDataFormatterLibcxxListLoop
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 0 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestDataFormatterLibcxxMultiSet
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestDataFormatterLibcxxSet
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestDataFormatterLibcxxString
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestDataFormatterLibcxxVBool
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestDataFormatterLibcxxVector
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestDataFormatterNSIndexPath
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestDataFormatterNSString
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 9 test(s), Total: 9 test(s)
>>>>>>>>>>>>>>>> Name: TestDataFormatterNamedSummaries
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestDataFormatterObjC
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 36 test(s), Total: 36 test(s)
>>>>>>>>>>>>>>>> Name: TestDataFormatterPythonSynth
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 6 test(s), Total: 6 test(s)
>>>>>>>>>>>>>>>> Name: TestDataFormatterRefPtrRecursion
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestDataFormatterScript
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestDataFormatterSkipSummary
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestDataFormatterSmartArray
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestDataFormatterStdIterator
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestDataFormatterStdList
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestDataFormatterStdMap
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestDataFormatterStdSmartPtr
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 0 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestDataFormatterStdString
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestDataFormatterStdTuple
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 0 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestDataFormatterStdUniquePtr
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 0 test(s), Total: 6 test(s)
>>>>>>>>>>>>>>>> Name: TestDataFormatterStdVBool
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 0 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestDataFormatterStdVector
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestDataFormatterSynth
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestDataFormatterSynthType
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestDataFormatterSynthVal
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestDataFormatterUnordered
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestDataFormatterVarScriptFormatting
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestDeadStrip
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestDebugBreak
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestDebuggerAPI
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 4 test(s), Total: 4 test(s)
>>>>>>>>>>>>>>>> Name: TestDeepBundle
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestDefaultCacheLineSize
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 0 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestDefaultConstructorForAPIObjects
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 36 test(s), Total: 36 test(s)
>>>>>>>>>>>>>>>> Name: TestDefiningOverloadedFunctions
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestDiagnoseDereferenceArgument
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 0 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestDiagnoseDereferenceFunctionReturn
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 0 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestDiagnoseDereferenceThis
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 0 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestDiagnoseDereferenceVirtualMethodCall
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 0 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestDiagnoseInheritance
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 0 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestDiamond
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestDisasmAPI
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestDisassembleBreakpoint
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestDisassembleRawData
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestDisassemble_VST1_64
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 0 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestDisassembly
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 0 test(s), Total: 2 test(s)
>>>>>>>>>>>>>>>> Name: TestDoAttachThenDisassembly
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 0 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestDynamicValue
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestDynamicValueChildCount
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestEhFrameUnwind
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 0 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestEmulations
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 2 test(s), Total: 2 test(s)
>>>>>>>>>>>>>>>> Name: TestEnumTypes
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestEnumVariables
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestEqualityOperators
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 9 test(s), Total: 9 test(s)
>>>>>>>>>>>>>>>> Name: TestEvents
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 9 test(s), Total: 9 test(s)
>>>>>>>>>>>>>>>> Name: TestExclusivitySuppression
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 6 test(s), Total: 6 test(s)
>>>>>>>>>>>>>>>> Name: TestExclusivityViolation
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestExec
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestExitDuringBreak
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestExitDuringStep
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 9 test(s), Total: 9 test(s)
>>>>>>>>>>>>>>>> Name: TestExprDoesntBlock
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestExprHelpExamples
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestExprInProtocolExtension
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestExprOptions
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestExpressionAccessControl
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestExpressionCmd
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 0 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestExpressionErrorBreakpoint
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 12 test(s), Total: 12 test(s)
>>>>>>>>>>>>>>>> Name: TestExpressionErrors
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 6 test(s), Total: 6 test(s)
>>>>>>>>>>>>>>>> Name: TestExpressionInSyscall
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestExpressionScopes
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestExpressions
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 0 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestExprs
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 12 test(s), Total: 12 test(s)
>>>>>>>>>>>>>>>> Name: TestExprs2
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestExprsChar
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 9 test(s), Total: 9 test(s)
>>>>>>>>>>>>>>>> Name: TestFatArchives
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestFdLeak
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestFilePrivate
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestFindStructTypes
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestFixIts
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 6 test(s), Total: 6 test(s)
>>>>>>>>>>>>>>>> Name: TestFloatTypes
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 12 test(s), Total: 12 test(s)
>>>>>>>>>>>>>>>> Name: TestFloatTypesExpr
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 12 test(s), Total: 12 test(s)
>>>>>>>>>>>>>>>> Name: TestFormatPropagation
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestFormats
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestFormatters
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestFormattersBoolRefPtr
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestFormattersOneIsSingular
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestFormattersOsType
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestFormattersSBAPI
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 6 test(s), Total: 6 test(s)
>>>>>>>>>>>>>>>> Name: TestForwardDecl
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestForwardDeclaration
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestFoundationDisassembly
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 6 test(s)
>>>>>>>>>>>>>>>> Name: TestFrameDisassemble
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestFrameFormatSmallStruct
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestFrameUtils
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestFrameVar
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestFrameVariableAnonymousUnions
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestFrameVariableResponse
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 0 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestFrames
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 9 test(s), Total: 9 test(s)
>>>>>>>>>>>>>>>> Name: TestFunctionTypes
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 6 test(s), Total: 6 test(s)
>>>>>>>>>>>>>>>> Name: TestFunctionVariables
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestGCore
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 2 test(s), Total: 2 test(s)
>>>>>>>>>>>>>>>> Name: TestGdbRemoteAbort
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 2 test(s)
>>>>>>>>>>>>>>>> Name: TestGdbRemoteAttach
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 2 test(s)
>>>>>>>>>>>>>>>> Name: TestGdbRemoteAuxvSupport
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 0 test(s), Total: 7 test(s)
>>>>>>>>>>>>>>>> Name: TestGdbRemoteExitCode
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 6 test(s)
>>>>>>>>>>>>>>>> Name: TestGdbRemoteExpeditedRegisters
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 5 test(s), Total: 10 test(s)
>>>>>>>>>>>>>>>> Name: TestGdbRemoteHostInfo
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 2 test(s), Total: 4 test(s)
>>>>>>>>>>>>>>>> Name: TestGdbRemoteKill
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 2 test(s)
>>>>>>>>>>>>>>>> Name: TestGdbRemoteModuleInfo
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 0 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestGdbRemoteProcessInfo
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 5 test(s), Total: 12 test(s)
>>>>>>>>>>>>>>>> Name: TestGdbRemoteRegisterState
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 2 test(s), Total: 4 test(s)
>>>>>>>>>>>>>>>> Name: TestGdbRemoteSegFault
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 2 test(s)
>>>>>>>>>>>>>>>> Name: TestGdbRemoteSingleStep
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 2 test(s)
>>>>>>>>>>>>>>>> Name: TestGdbRemoteThreadName
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 0 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestGdbRemoteThreadsInStopReply
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 5 test(s), Total: 10 test(s)
>>>>>>>>>>>>>>>> Name: TestGdbRemote_QPassSignals
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 0 test(s), Total: 4 test(s)
>>>>>>>>>>>>>>>> Name: TestGdbRemote_qThreadStopInfo
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 2 test(s), Total: 6 test(s)
>>>>>>>>>>>>>>>> Name: TestGdbRemote_vCont
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 6 test(s), Total: 12 test(s)
>>>>>>>>>>>>>>>> Name: TestGetVariables
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestGlobalObjects
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestGlobalVariables
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestGoASTContext
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 0 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestGoFormatters
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 0 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestGoroutines
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 0 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestGuessLanguage
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestHWBreakMultiThread
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 0 test(s), Total: 2 test(s)
>>>>>>>>>>>>>>>> Name: TestHandleSegv
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 0 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestHelloWorld
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 9 test(s), Total: 9 test(s)
>>>>>>>>>>>>>>>> Name: TestHelp
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 18 test(s), Total: 18 test(s)
>>>>>>>>>>>>>>>> Name: TestHiddenIvars
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 11 test(s), Total: 15 test(s)
>>>>>>>>>>>>>>>> Name: TestHistoryRecall
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestIRInterpreter
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestIRInterpreterPHINodes
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestImageListMultiArchitecture
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestImport
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestInOutVariables
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestIncompleteModules
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestIndexVariable
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestIndirectEnumVariables
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 6 test(s), Total: 6 test(s)
>>>>>>>>>>>>>>>> Name: TestIndirectSymbols
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestInferiorAssert
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 18 test(s), Total: 18 test(s)
>>>>>>>>>>>>>>>> Name: TestInferiorChanged
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestInferiorCrashing
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 21 test(s), Total: 21 test(s)
>>>>>>>>>>>>>>>> Name: TestInitializerList
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestInlineStepping
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 9 test(s), Total: 9 test(s)
>>>>>>>>>>>>>>>> Name: TestInlinedBreakpoints
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestInlinedFrame
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestInlines
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestIntegerTypes
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 60 test(s), Total: 60 test(s)
>>>>>>>>>>>>>>>> Name: TestIntegerTypesExpr
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 60 test(s), Total: 60 test(s)
>>>>>>>>>>>>>>>> Name: TestInterruptThreadNames
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestJITLoaderGDB
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 0 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestLLDBIterator
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 9 test(s), Total: 9 test(s)
>>>>>>>>>>>>>>>> Name: TestLaunchWithShellExpand
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestLazyReverse
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestLibCxxAtomic
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestLibCxxFunction
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestLinuxCore
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 9 test(s), Total: 9 test(s)
>>>>>>>>>>>>>>>> Name: TestLinuxCoreThreads
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 2 test(s), Total: 2 test(s)
>>>>>>>>>>>>>>>> Name: TestListener
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestLldbGdbServer
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 32 test(s), Total: 65 test(s)
>>>>>>>>>>>>>>>> Name: TestLoadUnload
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 18 test(s), Total: 18 test(s)
>>>>>>>>>>>>>>>> Name: TestLocalVariable
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 0 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestLogging
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 5 test(s), Total: 5 test(s)
>>>>>>>>>>>>>>>> Name: TestLongjmp
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 0 test(s), Total: 9 test(s)
>>>>>>>>>>>>>>>> Name: TestMPXRegisters
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 0 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestMTCSimple
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestMTCSwift
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestMTCSwiftProperty
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestMacros
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestMembersAndLocalsWithSameName
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 6 test(s), Total: 6 test(s)
>>>>>>>>>>>>>>>> Name: TestMemoryCache
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestMemoryFind
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestMemoryHistory
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestMemoryRead
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestMiBreak
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 7 test(s), Total: 7 test(s)
>>>>>>>>>>>>>>>> Name: TestMiCliSupport
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 8 test(s), Total: 8 test(s)
>>>>>>>>>>>>>>>> Name: TestMiData
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 6 test(s), Total: 7 test(s)
>>>>>>>>>>>>>>>> Name: TestMiEnvironmentCd
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 0 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestMiExec
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 9 test(s), Total: 9 test(s)
>>>>>>>>>>>>>>>> Name: TestMiExit
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestMiFile
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 4 test(s), Total: 4 test(s)
>>>>>>>>>>>>>>>> Name: TestMiGdbSetShow
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 9 test(s), Total: 9 test(s)
>>>>>>>>>>>>>>>> Name: TestMiGdbSetShowPrint
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestMiInterpreterExec
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 8 test(s), Total: 8 test(s)
>>>>>>>>>>>>>>>> Name: TestMiLexicalScope
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestMiLibraryLoaded
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestMiPrompt
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestMiSignal
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 5 test(s), Total: 5 test(s)
>>>>>>>>>>>>>>>> Name: TestMiStack
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 7 test(s), Total: 7 test(s)
>>>>>>>>>>>>>>>> Name: TestMiStartupOptions
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 10 test(s), Total: 10 test(s)
>>>>>>>>>>>>>>>> Name: TestMiSymbol
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestMiSyntax
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 4 test(s), Total: 4 test(s)
>>>>>>>>>>>>>>>> Name: TestMiTarget
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestMiThreadInfo
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestMiVar
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 5 test(s), Total: 6 test(s)
>>>>>>>>>>>>>>>> Name: TestMiniDump
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 5 test(s)
>>>>>>>>>>>>>>>> Name: TestMiniDumpNew
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 8 test(s), Total: 8 test(s)
>>>>>>>>>>>>>>>> Name: TestMixedLanguages
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestModuleAndSection
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 9 test(s), Total: 9 test(s)
>>>>>>>>>>>>>>>> Name: TestModulesAutoImport
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestModulesInlineFunctions
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestMoveNearest
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestMultilangFormatterCategories
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestMultilevelArrays
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestMultilineExpressions
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 2 test(s), Total: 2 test(s)
>>>>>>>>>>>>>>>> Name: TestMultipleBreakpoints
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestMultipleDebuggers
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestMultipleDebuggersCommands
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestMultipleHits
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestMultipleTargets
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestMultithreaded
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 0 test(s), Total: 12 test(s)
>>>>>>>>>>>>>>>> Name: TestMyFirstWatchpoint
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestNSArraySynthetic
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestNSDictionarySynthetic
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestNSError
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestNSObjectSubclass
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestNSSetSynthetic
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestNameLookup
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestNamespace
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 12 test(s), Total: 12 test(s)
>>>>>>>>>>>>>>>> Name: TestNamespaceDefinitions
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestNamespaceLookup
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 24 test(s), Total: 24 test(s)
>>>>>>>>>>>>>>>> Name: TestNestedAlias
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestNestedPersistentTypes
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestNoReturnModuleEnd
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestNoSuchArch
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestNoreturnUnwind
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestNumThreads
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 0 test(s), Total: 6 test(s)
>>>>>>>>>>>>>>>> Name: TestObjCBaseClassSBType
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestObjCBreakpoints
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestObjCBuiltinTypes
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestObjCCheckers
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestObjCClassMethod
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestObjCDynamicSBType
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestObjCDynamicValue
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestObjCImportedTypes
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestObjCIvarDiscovery
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 4 test(s), Total: 4 test(s)
>>>>>>>>>>>>>>>> Name: TestObjCIvarOffsets
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestObjCIvarStripped
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestObjCIvarsInBlocks
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestObjCMethodReturningBOOL
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestObjCMethods
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 12 test(s), Total: 12 test(s)
>>>>>>>>>>>>>>>> Name: TestObjCMethods2
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 18 test(s), Total: 18 test(s)
>>>>>>>>>>>>>>>> Name: TestObjCModules
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestObjCNewSyntax
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 30 test(s), Total: 30 test(s)
>>>>>>>>>>>>>>>> Name: TestObjCProperty
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestObjCSelf
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestObjCSingleEntryDictionary
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestObjCStaticMethod
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestObjCStaticMethodStripped
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestObjCStepping
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestObjCStructArgument
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestObjCStructReturn
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestObjCSuper
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestObjCType
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestObjCTypeQueryFromOtherCompileUnit
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestObjCXX
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestObjCiVarIMP
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestObjcInference
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestObjcOptimized
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestObjectDescriptionAPI
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestOrderFile
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestOverloadedFunctions
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestPOUnwrapping
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestPaths
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 2 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestPersistObjCPointeeType
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestPersistentPtrUpdate
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestPersistentTypes
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestPersistentVariables
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestPlatformCommand
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 7 test(s), Total: 8 test(s)
>>>>>>>>>>>>>>>> Name: TestPlatformProcessConnect
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 0 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestPlaygrounds
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestPluginCommands
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestPoVerbosity
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestPreRunDylibs
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestPrintArray
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestPrintObj
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestPrintObjectArray
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestPrintStackTraces
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestPrintfAfterUp
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestProcessAPI
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 15 test(s), Total: 15 test(s)
>>>>>>>>>>>>>>>> Name: TestProcessAttach
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestProcessIO
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 15 test(s), Total: 15 test(s)
>>>>>>>>>>>>>>>> Name: TestProcessLaunch
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 9 test(s), Total: 9 test(s)
>>>>>>>>>>>>>>>> Name: TestProcessSaveCore
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 0 test(s), Total: 6 test(s)
>>>>>>>>>>>>>>>> Name: TestPtrRef2Typedef
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestPtrRefs
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestPtrRefsObjC
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestPtrToArrayFormatting
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestPublicAPIHeaders
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestPyObjSynthProvider
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestPythonOSPlugin
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestQueues
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestQuoting
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 11 test(s), Total: 11 test(s)
>>>>>>>>>>>>>>>> Name: TestREPLBreakpoints
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestREPLClasses
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestREPLClosure
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestREPLDictionary
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestREPLDynamicType
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestREPLFunctionDefinition
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestREPLIntVars
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestREPLNSString
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestREPLQuickLookObject
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestREPLRecursiveClass
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestREPLStructs
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestREPLTypeLookup
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestRaise
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 4 test(s)
>>>>>>>>>>>>>>>> Name: TestRdar10967107
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestRdar11355592
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestRdar12408181
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 0 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestRdar12586188
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestRealDefinition
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 6 test(s), Total: 6 test(s)
>>>>>>>>>>>>>>>> Name: TestRecursiveInferior
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 21 test(s), Total: 21 test(s)
>>>>>>>>>>>>>>>> Name: TestRecursiveTypes
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 6 test(s), Total: 6 test(s)
>>>>>>>>>>>>>>>> Name: TestRegexpBreakCommand
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestRegisterVariables
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestRegisters
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 7 test(s), Total: 7 test(s)
>>>>>>>>>>>>>>>> Name: TestRegistersIterator
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestRepeatedExprs
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 0 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestReportData
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestRerun
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestResilience
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestReturnValue
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 6 test(s), Total: 6 test(s)
>>>>>>>>>>>>>>>> Name: TestRuntimeTypes
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestRvalueReferences
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSBData
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 6 test(s), Total: 6 test(s)
>>>>>>>>>>>>>>>> Name: TestSBFrameFindValue
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSBTypeClassMembers
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSBValuePersist
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSBValueUpdates
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSTL
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 6 test(s), Total: 6 test(s)
>>>>>>>>>>>>>>>> Name: TestSTTYBeforeAndAfter
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestSafeFuncCalls
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSampleTest
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestSaveJITObjects
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSectionAPI
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSendSignal
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSequenceFunctions
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSetData
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSetValues
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSetWatchlocation
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSetWatchpoint
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSettings
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 29 test(s), Total: 29 test(s)
>>>>>>>>>>>>>>>> Name: TestSharedLib
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 9 test(s), Total: 9 test(s)
>>>>>>>>>>>>>>>> Name: TestSharedLibStrippedSymbols
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 6 test(s), Total: 6 test(s)
>>>>>>>>>>>>>>>> Name: TestSignalsAPI
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSignedTypes
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSigtrampUnwind
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSimpleExpressions
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSingleQuoteInFilename
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestSourceManager
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 5 test(s), Total: 5 test(s)
>>>>>>>>>>>>>>>> Name: TestSourceRegexBreakpoints
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 6 test(s), Total: 6 test(s)
>>>>>>>>>>>>>>>> Name: TestStandardUnwind
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 0 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestStartupDelays
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 0 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestStaticVariables
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 6 test(s), Total: 6 test(s)
>>>>>>>>>>>>>>>> Name: TestStdCXXDisassembly
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 0 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestStepAndBreakpoints
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestStepNoDebug
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 9 test(s), Total: 9 test(s)
>>>>>>>>>>>>>>>> Name: TestStepOverBreakpoint
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 6 test(s), Total: 6 test(s)
>>>>>>>>>>>>>>>> Name: TestStepOverWatchpoint
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestStepTarget
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 15 test(s), Total: 15 test(s)
>>>>>>>>>>>>>>>> Name: TestStepUntil
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 12 test(s), Total: 12 test(s)
>>>>>>>>>>>>>>>> Name: TestSteppingSpeed
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 0 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestStopHookCmd
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 4 test(s), Total: 4 test(s)
>>>>>>>>>>>>>>>> Name: TestStopHookMechanism
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestStopHookMultipleThreads
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestStructuredDataAPI
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestStubReverseConnect
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 2 test(s)
>>>>>>>>>>>>>>>> Name: TestStubSetSID
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 6 test(s)
>>>>>>>>>>>>>>>> Name: TestSubmoduleImport
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSwiftAddressOf
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestSwiftAnyObjectType
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSwiftAnyType
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSwiftArchetypeResolution
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSwiftArrayType
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSwiftAssociatedTypeResolution
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSwiftAtObjCIvars
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSwiftBacktracePrinting
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSwiftBool
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSwiftBreakByPartialName
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSwiftBridgedArray
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSwiftBridgedMetatype
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSwiftBridgedStringVariables
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSwiftClassTypes
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSwiftClosures
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 4 test(s), Total: 4 test(s)
>>>>>>>>>>>>>>>> Name: TestSwiftConditionalBreakpoint
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSwiftCrossModuleExtension
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSwiftDictionaryNSObjectAnyObject
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSwiftDifferentClangFlags
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSwiftDynamicValue
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSwiftExpressionsInClassFunctions
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSwiftExpressionsInMethodsFromObjc
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSwiftExpressionsInMethodsPureSwift
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSwiftFixIts
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSwiftGenericEnums
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSwiftGenericExpressions
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 6 test(s), Total: 6 test(s)
>>>>>>>>>>>>>>>> Name: TestSwiftGenericTupleLabels
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSwiftGenericTypes
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSwiftGenericsResolution
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSwiftGetValueAsUnsigned
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSwiftGlobals
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSwiftHideRuntimeSupport
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSwiftInstancePointerSetSP
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSwiftLetInt
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSwiftMetadataSymbols
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSwiftMetatype
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSwiftMixAnyObjectType
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSwiftModuleSearchPaths
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSwiftMultipayloadEnum
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSwiftNestedArray
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSwiftNoProcess
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 6 test(s), Total: 6 test(s)
>>>>>>>>>>>>>>>> Name: TestSwiftObjCOptionals
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSwiftOneCaseEnum
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSwiftOptionals
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSwiftPathWithColons
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSwiftPrivateDeclName
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSwiftPrivateTypeAlias
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSwiftProtocolTypes
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSwiftRangeTypes
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSwiftReferenceStorageTypes
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSwiftReturns
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestSwiftStaticLinkingMacOS
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 0 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestSwiftStaticStringVariables
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSwiftStdlibDictionary
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSwiftStdlibSet
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSwiftStepping
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSwiftStringVariables
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSwiftStructChangeRerun
>>>>>>>>>>>>>>>> Failed: 1 test(s), Passed: 0 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> 	• Failed: TestSwiftStructChangeRerun.TestSwiftStructChangeRerun.test_swift_struct_change_rerun_dsym
>>>>>>>>>>>>>>>> Name: TestSwiftStructInit
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSwiftTuple
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSwiftTupleTypes
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSwiftTypeAliasFormatters
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSwiftTypeLookup
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSwiftTypeMetadata
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSwiftTypes
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSwiftValueOfOptionals
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSwiftVersion
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSwiftieFormatting
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSymbolAPI
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSymbolContext
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSymbolContextTwoFiles
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 6 test(s), Total: 6 test(s)
>>>>>>>>>>>>>>>> Name: TestSymbolTable
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSyntheticCapping
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestSyntheticFilterRecompute
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestTargetAPI
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 30 test(s), Total: 30 test(s)
>>>>>>>>>>>>>>>> Name: TestTargetCommand
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 9 test(s), Total: 9 test(s)
>>>>>>>>>>>>>>>> Name: TestTargetWatchAddress
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 6 test(s), Total: 6 test(s)
>>>>>>>>>>>>>>>> Name: TestTemplateArgs
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 6 test(s), Total: 6 test(s)
>>>>>>>>>>>>>>>> Name: TestTerminal
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 0 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestTestId
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestThreadAPI
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 15 test(s), Total: 15 test(s)
>>>>>>>>>>>>>>>> Name: TestThreadExit
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestThreadJump
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestThreadSpecificBpPlusCondition
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestThreadSpecificBreakpoint
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestThreadStates
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 9 test(s), Total: 15 test(s)
>>>>>>>>>>>>>>>> Name: TestThreadStepOut
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 9 test(s), Total: 9 test(s)
>>>>>>>>>>>>>>>> Name: TestThreadStepping
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestTlsGlobals
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestTopLevelExprs
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 2 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestTsanBasic
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestTsanCPPGlobalLocation
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestTsanGlobalLocation
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestTsanMultiple
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestTsanSwift
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestTsanThreadLeak
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestTsanThreadNumbers
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestTypeCompletion
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestTypeList
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestTypeLookup
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestTypeSummaryListArg
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestTypeSummaryListScript
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestUbsanBasic
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 0 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestUbsanUserExpression
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 0 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestUnicodeLiterals
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 9 test(s), Total: 9 test(s)
>>>>>>>>>>>>>>>> Name: TestUnionMembers
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestUniqueTypes
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestUnitTests
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestUniversal
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 9 test(s), Total: 9 test(s)
>>>>>>>>>>>>>>>> Name: TestUnsignedTypes
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestUnwindExpression
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 4 test(s), Total: 4 test(s)
>>>>>>>>>>>>>>>> Name: TestUserFormatVsSummary
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestValueAPI
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestValueAPIEmptyClass
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestValueAPILinkedList
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestValueMD5Crash
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestValueObjectRecursion
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestValueOfVectorVariable
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestValueVarUpdate
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestVarInAggregateMisuse
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestVectorTypesFormatting
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestVirtual
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestWatchLocation
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 0 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestWatchLocationWithWatchSet
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestWatchedVarHitWhenInScope
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestWatchpointCommandLLDB
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 6 test(s), Total: 6 test(s)
>>>>>>>>>>>>>>>> Name: TestWatchpointCommandPython
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 6 test(s), Total: 6 test(s)
>>>>>>>>>>>>>>>> Name: TestWatchpointCommands
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 15 test(s), Total: 15 test(s)
>>>>>>>>>>>>>>>> Name: TestWatchpointConditionAPI
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestWatchpointConditionCmd
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestWatchpointDisable
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 6 test(s), Total: 6 test(s)
>>>>>>>>>>>>>>>> Name: TestWatchpointEvents
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestWatchpointIgnoreCount
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestWatchpointIter
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestWatchpointMultipleSlots
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 0 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestWatchpointMultipleThreads
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 6 test(s), Total: 6 test(s)
>>>>>>>>>>>>>>>> Name: TestWatchpointSetErrorCases
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestWatchpointSizes
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestWithLimitDebugInfo
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestWithModuleDebugging
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: TestWow64MiniDump
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: TestXcode41Vs42GDBDisassembly
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 0 test(s), Total: 2 test(s)
>>>>>>>>>>>>>>>> Name: TestYMMRegister
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 1 test(s), Total: 1 test(s)
>>>>>>>>>>>>>>>> Name: Testtypedef
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 3 test(s), Total: 3 test(s)
>>>>>>>>>>>>>>>> Name: lldbsuite.test.lldbtest
>>>>>>>>>>>>>>>> Failed: 0 test(s), Passed: 229 test(s), Total: 232 test(s)
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> Changes
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> 	• Commit 7ab5eb911e7837e1a8b3bfab0def0721dee257ff by aprantl:
>>>>>>>>>>>>>>>> Handle inlined variables in
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> 		• edit: lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
>>>>>>>>>>>>>>>> 		• edit: test/DebugInfo/X86/live-debug-variables.ll
>>>>>>>>>>>>>>>> 		• add: test/DebugInfo/AArch64/inlined-argument.ll
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> 	• Commit f37b34589e8004bdccd1e43dd534f1af49cf43aa by aprantl:
>>>>>>>>>>>>>>>> Un-XFAIL a test after the bugfix in r317702.
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> 		• edit: test/DebugInfo/Generic/missing-abstract-variable.ll
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> 	• Commit d4d89d1854dde0818d660dbf923d8490572f085a by moiseev:
>>>>>>>>>>>>>>>> Use swift 4 with the AppKit overlay
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> 		• edit: stdlib/public/SDK/AppKit/NSGraphics.swift
>>>>>>>>>>>>>>>> 		• edit: stdlib/public/SDK/AppKit/AppKit.swift
>>>>>>>>>>>>>>>> 		• edit: stdlib/public/SDK/AppKit/CMakeLists.txt
>>>>>>>>>>>>>>>> 		• edit: stdlib/public/SDK/AppKit/NSOpenGL.swift
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> 	• Commit e0f4985fbee42a807c9d872af7655527230a77f5 by moiseev:
>>>>>>>>>>>>>>>> Enable comparability and some numeric operations for specific wrapper
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> 		• edit: stdlib/public/SDK/AppKit/AppKit.swift
>>>>>>>>>>>>>>>> 		• edit: test/stdlib/AppKit_Swift3.swift
>>>>>>>>>>>>>>>> 		• edit: test/stdlib/AppKit_Swift4.swift
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> 	• Commit 6cf8f9ba52609b4a46c9e7c68e535cd92706be31 by moiseev:
>>>>>>>>>>>>>>>> Extract operators into a protocol
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> 		• edit: stdlib/public/SDK/AppKit/AppKit.swift
>>>>>>>>>>>>>>>> 		• edit: test/stdlib/AppKit_Swift3.swift
>>>>>>>>>>>>>>>> 		• edit: test/stdlib/AppKit_Swift4.swift
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> 	• Commit b49adc23989d081553421b48ee68696812801a9a by moiseev:
>>>>>>>>>>>>>>>> Update UIKit
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> 		• edit: stdlib/public/SDK/UIKit/UIKit.swift
>>>>>>>>>>>>>>>> 		• edit: stdlib/public/SDK/UIKit/CMakeLists.txt
>>>>>>>>>>>>>>>> 		• edit: test/stdlib/UIKit.swift
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> 	• Commit 9b3739b91d7849bc43b14465d8ab8506ba156ecd by pyaskevich:
>>>>>>>>>>>>>>>> [IRGen] Add parameter flags to function type metadata
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> 		• edit: include/swift/Remote/MetadataReader.h
>>>>>>>>>>>>>>>> 		• edit: include/swift/Runtime/Metadata.h
>>>>>>>>>>>>>>>> 		• edit: stdlib/public/runtime/Demangle.cpp
>>>>>>>>>>>>>>>> 		• edit: stdlib/public/runtime/Metadata.cpp
>>>>>>>>>>>>>>>> 		• edit: include/swift/AST/Types.h
>>>>>>>>>>>>>>>> 		• edit: lib/IRGen/GenMeta.cpp
>>>>>>>>>>>>>>>> 		• edit: test/IRGen/function_metadata.swift
>>>>>>>>>>>>>>>> 		• edit: stdlib/public/runtime/Casting.cpp
>>>>>>>>>>>>>>>> 		• edit: include/swift/Runtime/RuntimeFunctions.def
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> 	• Commit f5ed1a87593494a3a850a5982f2283c83c24d7f9 by pyaskevich:
>>>>>>>>>>>>>>>> [IRGen] Switch function metdata to use `Metdata *` for parameter
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> 		• edit: include/swift/Runtime/RuntimeFunctions.def
>>>>>>>>>>>>>>>> 		• edit: stdlib/public/runtime/Metadata.cpp
>>>>>>>>>>>>>>>> 		• edit: test/IRGen/function_metadata.swift
>>>>>>>>>>>>>>>> 		• edit: include/swift/Runtime/Metadata.h
>>>>>>>>>>>>>>>> 		• edit: lib/IRGen/GenMeta.cpp
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> 	• Commit e9d4a5304ef7b8cb897a1f794bd2cf89075a9a90 by pyaskevich:
>>>>>>>>>>>>>>>> [IRGen] Fix function metadata endpoints to use separate parameter/flags
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> 		• edit: stdlib/public/runtime/Casting.cpp
>>>>>>>>>>>>>>>> 		• edit: include/swift/ABI/MetadataValues.h
>>>>>>>>>>>>>>>> 		• edit: test/IRGen/dynamic_cast_functions.swift
>>>>>>>>>>>>>>>> 		• edit: include/swift/Remote/MetadataReader.h
>>>>>>>>>>>>>>>> 		• edit: stdlib/public/runtime/Metadata.cpp
>>>>>>>>>>>>>>>> 		• edit: lib/IRGen/GenMeta.cpp
>>>>>>>>>>>>>>>> 		• edit: include/swift/Runtime/Metadata.h
>>>>>>>>>>>>>>>> 		• edit: include/swift/Runtime/RuntimeFunctions.def
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> 	• Commit 622cc1c64ac0d27da5f2d0be496a36c254ff2c3c by pyaskevich:
>>>>>>>>>>>>>>>> [ABI/IRGen] Add custom function parameter flags representation for
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> 		• edit: stdlib/public/runtime/Demangle.cpp
>>>>>>>>>>>>>>>> 		• edit: lib/IRGen/GenMeta.cpp
>>>>>>>>>>>>>>>> 		• edit: include/swift/Runtime/Metadata.h
>>>>>>>>>>>>>>>> 		• edit: unittests/Reflection/TypeRef.cpp
>>>>>>>>>>>>>>>> 		• edit: include/swift/Runtime/RuntimeFunctions.def
>>>>>>>>>>>>>>>> 		• edit: include/swift/Reflection/TypeRef.h
>>>>>>>>>>>>>>>> 		• edit: lib/RemoteAST/RemoteAST.cpp
>>>>>>>>>>>>>>>> 		• edit: stdlib/public/runtime/Metadata.cpp
>>>>>>>>>>>>>>>> 		• edit: test/IRGen/function_metadata.swift
>>>>>>>>>>>>>>>> 		• edit: include/swift/Remote/MetadataReader.h
>>>>>>>>>>>>>>>> 		• edit: test/IRGen/objc_block.sil
>>>>>>>>>>>>>>>> 		• edit: include/swift/ABI/MetadataValues.h
>>>>>>>>>>>>>>>> 		• edit: stdlib/public/Reflection/TypeRef.cpp
>>>>>>>>>>>>>>>> 		• edit: test/IRGen/c_function_pointer.sil
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> 	• Commit be3d1af5254ceae0a01ec25d3f62934294e2f8f4 by pyaskevich:
>>>>>>>>>>>>>>>> [ABI/Runtime] NFC: Rename function metadata arguments to parameters
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> 		• edit: stdlib/public/runtime/Demangle.cpp
>>>>>>>>>>>>>>>> 		• edit: lib/IRGen/GenMeta.cpp
>>>>>>>>>>>>>>>> 		• edit: include/swift/Remote/MetadataReader.h
>>>>>>>>>>>>>>>> 		• edit: include/swift/ABI/MetadataValues.h
>>>>>>>>>>>>>>>> 		• edit: stdlib/public/runtime/Casting.cpp
>>>>>>>>>>>>>>>> 		• edit: stdlib/public/runtime/Metadata.cpp
>>>>>>>>>>>>>>>> 		• edit: include/swift/Runtime/Metadata.h
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> 	• Commit cf0c757b1f025e561d67a5d2047158bff3c71ffa by pyaskevich:
>>>>>>>>>>>>>>>> [RemoteAST] Fix metadata reader to properly read function metadata
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> 		• edit: include/swift/Runtime/Metadata.h
>>>>>>>>>>>>>>>> 		• edit: test/RemoteAST/structural_types.swift
>>>>>>>>>>>>>>>> 		• edit: stdlib/public/runtime/Casting.cpp
>>>>>>>>>>>>>>>> 		• edit: stdlib/public/runtime/Metadata.cpp
>>>>>>>>>>>>>>>> 		• edit: stdlib/public/runtime/Demangle.cpp
>>>>>>>>>>>>>>>> 		• edit: include/swift/Remote/MetadataReader.h
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> 	• Commit eaf4f43101443a332a5f38b02c6f0b9e1ac85333 by pyaskevich:
>>>>>>>>>>>>>>>> [Casting] NFC: add some more tests for functions with parameter flags
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> 		• edit: test/IRGen/dynamic_cast_functions.swift
>>>>>>>>>>>>>>>> 		• edit: test/IRGen/function_metadata.swift
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> 	• Commit aba149a6589f18288041662466d49080bed848d8 by pyaskevich:
>>>>>>>>>>>>>>>> [AST] NFC: Remote unused accessor methods from `ParameterTypeFlags`
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> 		• edit: include/swift/AST/Types.h
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> 	• Commit 2a0cb060f8ad85f7b1bf1f6e77d82201ae4d0f2c by spestov:
>>>>>>>>>>>>>>>> SILGen: Look up the callee method after evaluating arguments
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> 		• edit: test/SILOptimizer/inline_self.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/closures_callee_guaranteed.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILOptimizer/linker.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/objc_extensions.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/dynamic_lookup.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/addressors.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/opaque_values_silgen.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/closures.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/dynamic_self.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/protocol_optional.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/objc_imported_generic.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/objc_init_ref_delegation.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/cf_members.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/default_arguments.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILOptimizer/definite_init_protocol_init.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/unowned.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/assignment.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/class_bound_protocols.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/dynamic_lookup_throws.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILOptimizer/definite_init_failable_initializers.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/generic_literals.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/optional-cast.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/default_arguments_generic.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/objc_blocks_bridging.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/subclass_existentials.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/super_init_refcounting.swift
>>>>>>>>>>>>>>>> 		• edit: test/Serialization/function.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/reabstract-tuple.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/reabstract_lvalue.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/objc_bridging.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/property_abstraction.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILOptimizer/definite_init_objc_factory_init.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/objc_factory_init.swift
>>>>>>>>>>>>>>>> 		• edit: test/DebugInfo/linetable.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/protocol_extensions.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/final.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/expressions.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/tuples.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/struct_resilience.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILOptimizer/inline_recursive.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/foreign_errors.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/tsan_instrumentation.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/switch_var.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/pointer_conversion.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/metatypes.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/let_decls.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/init_ref_delegation.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/objc_bridging_any.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/scalar_to_tuple_args.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/initializers.swift
>>>>>>>>>>>>>>>> 		• edit: test/SIL/whole_module_optimization.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/shared.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/foreach.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/statements.swift
>>>>>>>>>>>>>>>> 		• edit: lib/SILGen/SILGenApply.cpp
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/address_only_types.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/force_cast_chained_optional.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/complete_object_init.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/accessors.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/objc_thunks.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/objc_ownership_conventions.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/generic_property_base_lifetime.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/errors.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/opaque_ownership.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/writeback.swift
>>>>>>>>>>>>>>>> 		• edit: test/ClangImporter/objc_ir.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILOptimizer/pointer_conversion.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/objc_dealloc.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/import_as_member.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/source_location.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/default_constructor.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/dynamic.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/enum.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/extensions.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/property_behavior_init.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/objc_bridged_results.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/objc_currying.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/objc_protocols.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/external_definitions.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/witnesses_class.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/protocols.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/rethrows.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILOptimizer/access_marker_mandatory.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/partial_apply_generic.swift
>>>>>>>>>>>>>>>> 		• edit: test/Serialization/inherited-initializer.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/objc_bridging_peephole.swift
>>>>>>>>>>>>>>>> 		• edit: test/Serialization/objc.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/protocol_class_refinement.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/default_arguments_imported.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/reabstract.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/properties.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/auto_closures.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/default_arguments_serialized.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/objc_attr_NSManaged.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/functions.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/lifetime.swift
>>>>>>>>>>>>>>>> 		• edit: test/IRGen/class_bounded_generics.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/existential_erasure.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/if_while_binding.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/materializeForSet.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/borrow.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/partial_apply_super.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILOptimizer/generic_inline_self.swift
>>>>>>>>>>>>>>>> 		• edit: test/SILGen/guaranteed_self.swift
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> 	• Commit b3b438b6b736f2c311be3620c62e260b9338f1d2 by spestov:
>>>>>>>>>>>>>>>> SILGen: Kill RValue::delayedBorrow()
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> 		• edit: lib/SILGen/ArgumentSource.cpp
>>>>>>>>>>>>>>>> 		• edit: lib/SILGen/ArgumentSource.h
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> 	• Commit 5fd8e71ace729ead6557a856eef8ed4763d11aec by spestov:
>>>>>>>>>>>>>>>> SILGen: More dynamic method call cleanup
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> 		• edit: lib/SILGen/SILGenApply.cpp
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> 	• Commit 8d36be31a681f118c8aa10f304cb6b0488a6c8d8 by luizinho_mack:
>>>>>>>>>>>>>>>> Bump up changelog's 'new entries' notice to just bellow new Swift 4.1
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> 		• edit: CHANGELOG.md
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> 	• Commit 798bff756a49ff05ee5420f79b95aff3f2ab9c1a by mgottesman:
>>>>>>>>>>>>>>>> [silgen] Rename SavedInsertionPoint => SILGenSavedInsertionPoint.
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> 		• edit: lib/SILGen/SILGen.cpp
>>>>>>>>>>>>>>>> 		• edit: lib/SILGen/SILGenExpr.cpp
>>>>>>>>>>>>>>>> 		• edit: lib/SILGen/SILGenForeignError.cpp
>>>>>>>>>>>>>>>> 		• edit: lib/SILGen/SILGenConstructor.cpp
>>>>>>>>>>>>>>>> 		• edit: lib/SILGen/SILGenConvert.cpp
>>>>>>>>>>>>>>>> 		• edit: lib/SILGen/SILGenFunction.h
>>>>>>>>>>>>>>>> 		• edit: lib/SILGen/Cleanup.cpp
>>>>>>>>>>>>>>>> 		• edit: lib/SILGen/SILGenStmt.cpp
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> 	• Commit 49f5c761ff1ae453631756e467fb7aba2484ffd2 by mgottesman:
>>>>>>>>>>>>>>>> [pred-memopt] Change AvailableValue to be its own struct instead of a
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> 		• edit: lib/SILOptimizer/Mandatory/PredictableMemOpt.cpp
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> 	• Commit b17935aff22282d6dd26989360a003e897d81134 by mgottesman:
>>>>>>>>>>>>>>>> [pred-memopt] Rather than extracting values at the load site, extract at
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> 		• edit: lib/SILOptimizer/Mandatory/PredictableMemOpt.cpp
>>>>>>>>>>>>>>>> 		• edit: test/SILOptimizer/predictable_memopt.sil
>>>>>>>>>>>>>>>> 		• edit: include/swift/SIL/SILBuilder.h
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> 	• Commit b6f92700235e10207384886f8155faf3123ec1f6 by anemet:
>>>>>>>>>>>>>>>> Don't emit optimization remarks if we don't have a debug location
>>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>>> 		• edit: lib/SIL/OptimizationRemark.cpp
>>>>>>>>>>>>>>> 
>>>>>>>>>>>>>>> _______________________________________________
>>>>>>>>>>>>>>> swift-lldb-dev mailing list
>>>>>>>>>>>>>>> swift-lldb-dev at swift.org <mailto:swift-lldb-dev at swift.org>
>>>>>>>>>>>>>>> https://lists.swift.org/mailman/listinfo/swift-lldb-dev <https://lists.swift.org/mailman/listinfo/swift-lldb-dev>
>>>>>>>>>>>>>> 
>>>>>>>>>>>>> 
>>>>>>>>>>>> 
>>>>>>>>>>> 
>>>>>>>>>>> _______________________________________________
>>>>>>>>>>> swift-lldb-dev mailing list
>>>>>>>>>>> swift-lldb-dev at swift.org <mailto:swift-lldb-dev at swift.org>
>>>>>>>>>>> https://lists.swift.org/mailman/listinfo/swift-lldb-dev <https://lists.swift.org/mailman/listinfo/swift-lldb-dev>
>>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>> _______________________________________________
>>>>>>>>> swift-lldb-dev mailing list
>>>>>>>>> swift-lldb-dev at swift.org <mailto:swift-lldb-dev at swift.org>
>>>>>>>>> https://lists.swift.org/mailman/listinfo/swift-lldb-dev <https://lists.swift.org/mailman/listinfo/swift-lldb-dev>
> 

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.swift.org/pipermail/swift-lldb-dev/attachments/20171109/0d94ff1b/attachment-0001.html>


More information about the swift-lldb-dev mailing list