<div dir="ltr">Hello all!<br><br>Just now I pushed support for asynchronous test expectations to corelibs-xctest. Yay!<br><br>This adds a new dependency, between corelibs-xctest and corelibs-foundation. What does this mean for you?<br><br>- If you&#39;re a contributor to corelibs-xctest: Please use the new &#39;--foundation-build-dir&#39; parameter when invoking the project build_script.py directly. See the README for details. The Swift utils/build-script works just as before.<br><br>- If you&#39;re a contributor to swift-package-manager: Please use the new &#39;--foundation&#39; parameter when invoking Utilities/bootstrap to test the project. The Swift utils/build-script works just as before.<br><br>- If you&#39;re using corelibs-xctest via the swift-package-manager: The &#39;swift test&#39; command works just as before.<br><br>- If you&#39;re using corelibs-xctest outside of the swift-package-manager: When invoking executables that run XCTMain(), you&#39;ll need to (1) link XCTest, (2) link Foundation, and (3) include the Foundation and CoreFoundation public headers. For example, here&#39;s the swiftc invocation we use to compile and run the corelibs-xctest functional tests:<br><br><div>    swiftc \</div><div>        -Xlinker -rpath -Xlinker /path/to/xctest-linux-x86_64 \</div><div>        -L /path/to/xctest-linux-x86_64 \</div><div>        -I /path/to/xctest-linux-x86_64 \</div><div>        -Xlinker -rpath -Xlinker /path/to/foundation-linux-x86_64/Foundation \</div><div>        -L /path/to/foundation-linux-x86_64/Foundation \</div><div>        -I /path/to/foundation-linux-x86_64/Foundation \</div><div>        -I /path/to/foundation-linux-x86_64/Foundation/usr/lib/swift<br><br>Please email this list or file issues on <a href="https://bugs.swift.org">https://bugs.swift.org</a> if you have any comments, questions, or problems. Thanks--and enjoy asynchronous testing! :)<br><br>- Brian Gesiak</div></div>