<html><head><meta http-equiv="Content-Type" content="text/html charset=us-ascii"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class=""><div class=""><div class="">Hi list,</div><div class="">Here is an updated draft of my "Test Executables" proposal. This draft drops the less well defined ideas, and tightens up some of the motivation. Let me know what you think, and what more needs to be done.</div><div class="">Thanks,</div><div class="">George</div><div class=""><br class=""></div><div class=""><br class=""></div><div class=""><br class=""></div><h1 id="test-executables" style="padding-bottom: 0.3em; line-height: 1.2; border-bottom-width: 1px; border-bottom-style: solid; border-color: rgba(0, 0, 0, 0.180392); font-weight: normal; color: rgb(30, 30, 30); font-family: 'Segoe WPC', 'Segoe UI', SFUIText-Light, HelveticaNeue-Light, sans-serif, 'Droid Sans Fallback'; font-variant-ligatures: normal; orphans: 2; widows: 2;" class="">Test Executables</h1><ul style="color: rgb(30, 30, 30); font-family: 'Segoe WPC', 'Segoe UI', SFUIText-Light, HelveticaNeue-Light, sans-serif, 'Droid Sans Fallback'; font-size: 14px; font-variant-ligatures: normal; line-height: 22px; orphans: 2; widows: 2;" class=""><li class="">Proposal:&nbsp;<a href="NNNN-filename.md" style="color: rgb(64, 128, 208); text-decoration: none;" class="">SE-NNNN</a></li><li class="">Author:&nbsp;<a href="https://github.com/gwk" style="color: rgb(64, 128, 208); text-decoration: none;" class="">George King</a></li><li class="">Status:&nbsp;<strong class="">Awaiting review</strong>&nbsp;/&nbsp;<strong class="">DRAFT</strong></li><li class="">Review manager: TBD</li></ul><h2 id="introduction" style="font-weight: normal; color: rgb(30, 30, 30); font-family: 'Segoe WPC', 'Segoe UI', SFUIText-Light, HelveticaNeue-Light, sans-serif, 'Droid Sans Fallback'; font-variant-ligatures: normal; line-height: 22px; orphans: 2; widows: 2;" class="">Introduction</h2><p style="color: rgb(30, 30, 30); font-family: 'Segoe WPC', 'Segoe UI', SFUIText-Light, HelveticaNeue-Light, sans-serif, 'Droid Sans Fallback'; font-size: 14px; font-variant-ligatures: normal; line-height: 22px; orphans: 2; widows: 2;" class="">The package manager currently supports testing via XCTest, but does not provide support for other testing methodologies. In particular, facilities for building test executables (that is, executables meant strictly for testing and not as an end product) in the Swift Package Manager would make command line testing of Swift packages easier and more robust. We propose to add to the package manager the ability to specify and build test-only executable targets that are distinct from regular executables.</p><h2 id="motivation" style="font-weight: normal; color: rgb(30, 30, 30); font-family: 'Segoe WPC', 'Segoe UI', SFUIText-Light, HelveticaNeue-Light, sans-serif, 'Droid Sans Fallback'; font-variant-ligatures: normal; line-height: 22px; orphans: 2; widows: 2;" class="">Motivation</h2><p style="color: rgb(30, 30, 30); font-family: 'Segoe WPC', 'Segoe UI', SFUIText-Light, HelveticaNeue-Light, sans-serif, 'Droid Sans Fallback'; font-size: 14px; font-variant-ligatures: normal; line-height: 22px; orphans: 2; widows: 2;" class=""><a href="https://en.wikipedia.org/wiki/Integration_testing" style="color: rgb(64, 128, 208); text-decoration: none;" class="">Integration testing</a>&nbsp;is, broadly speaking, the practice of testing multiple software components such as functions and classes (which may be "unit tested" individually) in aggregate. Integration tests can reveal bugs arising from interactions between components, can validate the intended usage patterns for individual components, and serve as references for that intended usage.</p><p style="color: rgb(30, 30, 30); font-family: 'Segoe WPC', 'Segoe UI', SFUIText-Light, HelveticaNeue-Light, sans-serif, 'Droid Sans Fallback'; font-size: 14px; font-variant-ligatures: normal; line-height: 22px; orphans: 2; widows: 2;" class="">XCTest offers&nbsp;<a href="https://developer.apple.com/library/mac/documentation/DeveloperTools/Conceptual/testing_with_xcode/chapters/03-testing_basics.html#//apple_ref/doc/uid/TP40014132-CH3-SW8" style="color: rgb(64, 128, 208); text-decoration: none;" class="">facilities</a>&nbsp;for unit testing, performance testing, and GUI testing, but not for testing the basic IO behavior of a process. To be clear, this proposal does not address XCTest at all; while adding whole process, IO oriented APIs to XCTest sounds desirable, it is a larger project and out of scope for this proposal.</p><p style="color: rgb(30, 30, 30); font-family: 'Segoe WPC', 'Segoe UI', SFUIText-Light, HelveticaNeue-Light, sans-serif, 'Droid Sans Fallback'; font-size: 14px; font-variant-ligatures: normal; line-height: 22px; orphans: 2; widows: 2;" class="">Instead, this proposal simply asks for the ability to build executables specifically for testing, rather than for public usage. The intended use case is execution via an external test harness, or from within an XCTest case via NSTask/Process.</p><p style="color: rgb(30, 30, 30); font-family: 'Segoe WPC', 'Segoe UI', SFUIText-Light, HelveticaNeue-Light, sans-serif, 'Droid Sans Fallback'; font-size: 14px; font-variant-ligatures: normal; line-height: 22px; orphans: 2; widows: 2;" class="">Consider the existing features of swiftpm as two orthogonal axes:</p><ul style="color: rgb(30, 30, 30); font-family: 'Segoe WPC', 'Segoe UI', SFUIText-Light, HelveticaNeue-Light, sans-serif, 'Droid Sans Fallback'; font-size: 14px; font-variant-ligatures: normal; line-height: 22px; orphans: 2; widows: 2;" class=""><li class="">Build, Test</li><li class="">Library, Executable</li></ul><p style="color: rgb(30, 30, 30); font-family: 'Segoe WPC', 'Segoe UI', SFUIText-Light, HelveticaNeue-Light, sans-serif, 'Droid Sans Fallback'; font-size: 14px; font-variant-ligatures: normal; line-height: 22px; orphans: 2; widows: 2;" class="">Of the four combinations, only "Test Executable" is missing.</p><p style="color: rgb(30, 30, 30); font-family: 'Segoe WPC', 'Segoe UI', SFUIText-Light, HelveticaNeue-Light, sans-serif, 'Droid Sans Fallback'; font-size: 14px; font-variant-ligatures: normal; line-height: 22px; orphans: 2; widows: 2;" class="">Currently, test executables can simply be placed in the&nbsp;<code style="font-family: Menlo, Monaco, Consolas, 'Droid Sans Mono', 'Courier New', monospace, 'Droid Sans Fallback'; line-height: 19px; color: rgb(163, 21, 21);" class="">Sources</code>, where they are compiled as regular executable targets. Distinguishing them as test executables would be helpful for several reasons:</p><ul style="color: rgb(30, 30, 30); font-family: 'Segoe WPC', 'Segoe UI', SFUIText-Light, HelveticaNeue-Light, sans-serif, 'Droid Sans Fallback'; font-size: 14px; font-variant-ligatures: normal; line-height: 22px; orphans: 2; widows: 2;" class=""><li class="">Test executables would only be built by&nbsp;<code style="font-family: Menlo, Monaco, Consolas, 'Droid Sans Mono', 'Courier New', monospace, 'Droid Sans Fallback'; line-height: 19px; color: rgb(163, 21, 21);" class="">swift test</code>, not&nbsp;<code style="font-family: Menlo, Monaco, Consolas, 'Droid Sans Mono', 'Courier New', monospace, 'Droid Sans Fallback'; line-height: 19px; color: rgb(163, 21, 21);" class="">swift build</code>.</li><li class="">Putting all test code in the&nbsp;<code style="font-family: Menlo, Monaco, Consolas, 'Droid Sans Mono', 'Courier New', monospace, 'Droid Sans Fallback'; line-height: 19px; color: rgb(163, 21, 21);" class="">Tests</code>&nbsp;directory will prevent test executables from being exposed to library consumers, and clarifies developer intent.</li><li class="">For simple projects that produce a single library module, adding a test executable will no longer necessitate moving the library code from&nbsp;<code style="font-family: Menlo, Monaco, Consolas, 'Droid Sans Mono', 'Courier New', monospace, 'Droid Sans Fallback'; line-height: 19px; color: rgb(163, 21, 21);" class="">Sources/</code>&nbsp;to&nbsp;<code style="font-family: Menlo, Monaco, Consolas, 'Droid Sans Mono', 'Courier New', monospace, 'Droid Sans Fallback'; line-height: 19px; color: rgb(163, 21, 21);" class="">Sources/[Module]</code>&nbsp;to allow for the second target.</li></ul><h2 id="proposed-solution" style="font-weight: normal; color: rgb(30, 30, 30); font-family: 'Segoe WPC', 'Segoe UI', SFUIText-Light, HelveticaNeue-Light, sans-serif, 'Droid Sans Fallback'; font-variant-ligatures: normal; line-height: 22px; orphans: 2; widows: 2;" class="">Proposed solution</h2><p style="color: rgb(30, 30, 30); font-family: 'Segoe WPC', 'Segoe UI', SFUIText-Light, HelveticaNeue-Light, sans-serif, 'Droid Sans Fallback'; font-size: 14px; font-variant-ligatures: normal; line-height: 22px; orphans: 2; widows: 2;" class=""><code style="font-family: Menlo, Monaco, Consolas, 'Droid Sans Mono', 'Courier New', monospace, 'Droid Sans Fallback'; line-height: 19px; color: rgb(163, 21, 21);" class="">swift test</code>&nbsp;should distinguish between unit test directories and executable directories, just as&nbsp;<code style="font-family: Menlo, Monaco, Consolas, 'Droid Sans Mono', 'Courier New', monospace, 'Droid Sans Fallback'; line-height: 19px; color: rgb(163, 21, 21);" class="">swift build</code>&nbsp;distinguishes between libary and executable directories.</p><p style="color: rgb(30, 30, 30); font-family: 'Segoe WPC', 'Segoe UI', SFUIText-Light, HelveticaNeue-Light, sans-serif, 'Droid Sans Fallback'; font-size: 14px; font-variant-ligatures: normal; line-height: 22px; orphans: 2; widows: 2;" class="">The&nbsp;<code style="font-family: Menlo, Monaco, Consolas, 'Droid Sans Mono', 'Courier New', monospace, 'Droid Sans Fallback'; line-height: 19px; color: rgb(163, 21, 21);" class="">swift test</code>&nbsp;command should, upon encountering a test executable directory, build the executable.</p><p style="color: rgb(30, 30, 30); font-family: 'Segoe WPC', 'Segoe UI', SFUIText-Light, HelveticaNeue-Light, sans-serif, 'Droid Sans Fallback'; font-size: 14px; font-variant-ligatures: normal; line-height: 22px; orphans: 2; widows: 2;" class="">If the test executable build fails,&nbsp;<code style="font-family: Menlo, Monaco, Consolas, 'Droid Sans Mono', 'Courier New', monospace, 'Droid Sans Fallback'; line-height: 19px; color: rgb(163, 21, 21);" class="">swift test</code>&nbsp;should report a test failure and return a nonzero exit code. An external test harness can then run the test executables as it sees fit. Note that for an XCTest case to invoke the test executable, test executables would need to be built prior to running test cases.</p><p style="color: rgb(30, 30, 30); font-family: 'Segoe WPC', 'Segoe UI', SFUIText-Light, HelveticaNeue-Light, sans-serif, 'Droid Sans Fallback'; font-size: 14px; font-variant-ligatures: normal; line-height: 22px; orphans: 2; widows: 2;" class="">Future improvements could include invoking an external test command specified in&nbsp;<code style="font-family: Menlo, Monaco, Consolas, 'Droid Sans Mono', 'Courier New', monospace, 'Droid Sans Fallback'; line-height: 19px; color: rgb(163, 21, 21);" class="">Package.swift</code>&nbsp;upon successful build.</p><h2 id="detailed-design" style="font-weight: normal; color: rgb(30, 30, 30); font-family: 'Segoe WPC', 'Segoe UI', SFUIText-Light, HelveticaNeue-Light, sans-serif, 'Droid Sans Fallback'; font-variant-ligatures: normal; line-height: 22px; orphans: 2; widows: 2;" class="">Detailed design</h2><p style="color: rgb(30, 30, 30); font-family: 'Segoe WPC', 'Segoe UI', SFUIText-Light, HelveticaNeue-Light, sans-serif, 'Droid Sans Fallback'; font-size: 14px; font-variant-ligatures: normal; line-height: 22px; orphans: 2; widows: 2;" class="">I am unclear on the exact semantics of&nbsp;<code style="font-family: Menlo, Monaco, Consolas, 'Droid Sans Mono', 'Courier New', monospace, 'Droid Sans Fallback'; line-height: 19px; color: rgb(163, 21, 21);" class="">@testable import</code>&nbsp;(I see no difference when I remove the&nbsp;<code style="font-family: Menlo, Monaco, Consolas, 'Droid Sans Mono', 'Courier New', monospace, 'Droid Sans Fallback'; line-height: 19px; color: rgb(163, 21, 21);" class="">@testable</code>&nbsp;modifier from a test case), but I assume it has to do with linking a unit test against the library under test. Superficially, it makes sense that a test executable would have the same requirements and use the same syntax.</p><h2 id="impact-on-existing-code" style="font-weight: normal; color: rgb(30, 30, 30); font-family: 'Segoe WPC', 'Segoe UI', SFUIText-Light, HelveticaNeue-Light, sans-serif, 'Droid Sans Fallback'; font-variant-ligatures: normal; line-height: 22px; orphans: 2; widows: 2;" class="">Impact on existing code</h2><p style="color: rgb(30, 30, 30); font-family: 'Segoe WPC', 'Segoe UI', SFUIText-Light, HelveticaNeue-Light, sans-serif, 'Droid Sans Fallback'; font-size: 14px; font-variant-ligatures: normal; line-height: 22px; orphans: 2; widows: 2;" class="">None;&nbsp;<code style="font-family: Menlo, Monaco, Consolas, 'Droid Sans Mono', 'Courier New', monospace, 'Droid Sans Fallback'; line-height: 19px; color: rgb(163, 21, 21);" class="">swift test</code>&nbsp;currently appears to ignore subdirectories in&nbsp;<code style="font-family: Menlo, Monaco, Consolas, 'Droid Sans Mono', 'Courier New', monospace, 'Droid Sans Fallback'; line-height: 19px; color: rgb(163, 21, 21);" class="">Tests</code>&nbsp;that do not contain XCTest-based unit tests.</p><h2 id="alternatives-considered" style="font-weight: normal; color: rgb(30, 30, 30); font-family: 'Segoe WPC', 'Segoe UI', SFUIText-Light, HelveticaNeue-Light, sans-serif, 'Droid Sans Fallback'; font-variant-ligatures: normal; line-height: 22px; orphans: 2; widows: 2;" class="">Alternatives considered</h2><h3 id="no-action" style="font-weight: normal; color: rgb(30, 30, 30); font-family: 'Segoe WPC', 'Segoe UI', SFUIText-Light, HelveticaNeue-Light, sans-serif, 'Droid Sans Fallback'; font-variant-ligatures: normal; line-height: 22px; orphans: 2; widows: 2;" class="">No action</h3><p style="color: rgb(30, 30, 30); font-family: 'Segoe WPC', 'Segoe UI', SFUIText-Light, HelveticaNeue-Light, sans-serif, 'Droid Sans Fallback'; font-size: 14px; font-variant-ligatures: normal; line-height: 22px; orphans: 2; widows: 2;" class="">See the list of problems with treating test executables as regular targets in the "Motivation" section above.</p><h3 id="complete-integration-testing-with-xctest" style="font-weight: normal; color: rgb(30, 30, 30); font-family: 'Segoe WPC', 'Segoe UI', SFUIText-Light, HelveticaNeue-Light, sans-serif, 'Droid Sans Fallback'; font-variant-ligatures: normal; line-height: 22px; orphans: 2; widows: 2;" class="">Complete integration testing with XCTest</h3><p style="color: rgb(30, 30, 30); font-family: 'Segoe WPC', 'Segoe UI', SFUIText-Light, HelveticaNeue-Light, sans-serif, 'Droid Sans Fallback'; font-size: 14px; font-variant-ligatures: normal; line-height: 22px; orphans: 2; widows: 2;" class="">This would be a much larger undertaking, and it seems likely that such a solution would necessitate the essentials of this proposal anyway.</p></div><div class=""><br class=""></div><br class=""><div><blockquote type="cite" class=""><div class="">On Jul 7, 2016, at 7:07 PM, George King &lt;<a href="mailto:george.w.king@gmail.com" class="">george.w.king@gmail.com</a>&gt; wrote:</div><br class="Apple-interchange-newline"><div class=""><meta http-equiv="Content-Type" content="text/html charset=us-ascii" class=""><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class=""><h1 id="test-executables-by-convention" style="padding-bottom: 0.3em; line-height: 1.2; border-bottom-width: 1px; border-bottom-style: solid; font-weight: normal; border-color: rgba(255, 255, 255, 0.180392); font-variant-ligatures: normal; font-variant-position: normal; font-variant-numeric: normal; font-variant-alternates: normal; font-variant-east-asian: normal; widows: 1;" class=""><span style="font-size: 12px;" class="">Hello, here is a rough draft proposal, inspired by a conversation with Daniel Dunbar last week on the Slack channel. I realize it is light on details, but hopefully this will be a starting point for figuring out how to better support building dedicated test executable targets. Let me know what you think, and if there is anything else I can do to move this forward. Thanks, -George</span></h1><h1 id="test-executables-by-convention" style="padding-bottom: 0.3em; line-height: 1.2; border-bottom-width: 1px; border-bottom-style: solid; font-weight: normal; border-color: rgba(255, 255, 255, 0.180392); font-variant-ligatures: normal; font-variant-position: normal; font-variant-numeric: normal; font-variant-alternates: normal; font-variant-east-asian: normal; widows: 1;" class="">Test Executables</h1><ul style="font-size: 14px; font-variant-ligatures: normal; font-variant-position: normal; font-variant-numeric: normal; font-variant-alternates: normal; font-variant-east-asian: normal; line-height: 22px; widows: 1;" class=""><li class="">Proposal:&nbsp;<a href="x-msg://24/NNNN-filename.md" style="text-decoration: none;" class="">SE-NNNN</a></li><li class="">Author:&nbsp;<a href="https://github.com/gwk" style="text-decoration: none;" class="">George King</a></li><li class="">Status:&nbsp;<strong class="">Awaiting review</strong></li><li class="">Review manager: TBD</li></ul><h2 id="introduction" style="font-weight: normal; font-variant-ligatures: normal; font-variant-position: normal; font-variant-numeric: normal; font-variant-alternates: normal; font-variant-east-asian: normal; line-height: 22px; widows: 1;" class="">Introduction</h2><p style="font-size: 14px; font-variant-ligatures: normal; font-variant-position: normal; font-variant-numeric: normal; font-variant-alternates: normal; font-variant-east-asian: normal; line-height: 22px; widows: 1;" class="">The package manager currently supports testing via XCTest, but does not provide support for other testing methodologies. In particular, facilities for building test executables directly in the package manager would make command line testing of Swift packages easier and more robust.</p><h2 id="motivation" style="font-weight: normal; font-variant-ligatures: normal; font-variant-position: normal; font-variant-numeric: normal; font-variant-alternates: normal; font-variant-east-asian: normal; line-height: 22px; widows: 1;" class="">Motivation</h2><p style="font-size: 14px; font-variant-ligatures: normal; font-variant-position: normal; font-variant-numeric: normal; font-variant-alternates: normal; font-variant-east-asian: normal; line-height: 22px; widows: 1;" class=""><font class=""><a href="https://en.wikipedia.org/wiki/Integration_testing" style="text-decoration: none;" class="">Integration testing</a>&nbsp;is, broadly speaking, the practice of testing multiple software components such as functions and classes (which may be "unit tested" individually) in aggregate. Integration tests can reveal bugs arising from interactions between components, can validate the intended usage patterns for individual components, and serve as references for that intended usage.</font></p><p style="font-size: 14px; font-variant-ligatures: normal; font-variant-position: normal; font-variant-numeric: normal; font-variant-alternates: normal; font-variant-east-asian: normal; line-height: 22px; widows: 1;" class="">XCTest offers&nbsp;<a href="https://developer.apple.com/library/mac/documentation/DeveloperTools/Conceptual/testing_with_xcode/chapters/03-testing_basics.html#//apple_ref/doc/uid/TP40014132-CH3-SW8" style="text-decoration: none;" class="">facilities</a>&nbsp;for unit testing, performance testing,and GUI testing, but not for testing the basic IO behavior of a process. Since the swift package manager supports building command-line executables, it should support testing them as well.</p><p style="font-size: 14px; font-variant-ligatures: normal; font-variant-position: normal; font-variant-numeric: normal; font-variant-alternates: normal; font-variant-east-asian: normal; line-height: 22px; widows: 1;" class="">Consider the existing features of swiftpm as two orthogonal axes:</p><ul style="font-size: 14px; font-variant-ligatures: normal; font-variant-position: normal; font-variant-numeric: normal; font-variant-alternates: normal; font-variant-east-asian: normal; line-height: 22px; widows: 1;" class=""><li class="">Build, Test</li><li class="">Library, Executable</li></ul><p style="font-size: 14px; font-variant-ligatures: normal; font-variant-position: normal; font-variant-numeric: normal; font-variant-alternates: normal; font-variant-east-asian: normal; line-height: 22px; widows: 1;" class="">Of the four combinations, only "Test Executable" is missing.</p><p style="font-size: 14px; font-variant-ligatures: normal; font-variant-position: normal; font-variant-numeric: normal; font-variant-alternates: normal; font-variant-east-asian: normal; line-height: 22px; widows: 1;" class="">One preliminary step towards process-based testing would be to add conventions for building executables that are meant strictly for testing, rather than for public usage. These would be exercised by some external testing harness; adding such capabilities to XCTest is beyond the scope of this proposal.</p><p style="font-size: 14px; font-variant-ligatures: normal; font-variant-position: normal; font-variant-numeric: normal; font-variant-alternates: normal; font-variant-east-asian: normal; line-height: 22px; widows: 1;" class="">Currently, test executables can simply be placed in the&nbsp;<code style="line-height: 19px;" class="">Sources</code>, where they are compiled as regular executable targets. Distinguishing them as test executables would be helpful for several reasons:</p><ul style="font-size: 14px; font-variant-ligatures: normal; font-variant-position: normal; font-variant-numeric: normal; font-variant-alternates: normal; font-variant-east-asian: normal; line-height: 22px; widows: 1;" class=""><li class="">Putting all test code in the&nbsp;<code style="line-height: 19px;" class="">Tests</code>&nbsp;directory will prevent test executables from being exposed to library consumers, and clarifies developer intent.</li><li class="">For simple projects that produce a single library module, adding a test executable no longer necessitates moving the library code from&nbsp;<code style="line-height: 19px;" class="">Sources/</code>&nbsp;to&nbsp;<code style="line-height: 19px;" class="">Sources/[Module]</code>&nbsp;to allow for the second target.</li><li class="">Test executables would only be built by&nbsp;<code style="line-height: 19px;" class="">swift test</code>, not&nbsp;<code style="line-height: 19px;" class="">swift build</code>.</li></ul><h2 id="proposed-solution" style="font-weight: normal; font-variant-ligatures: normal; font-variant-position: normal; font-variant-numeric: normal; font-variant-alternates: normal; font-variant-east-asian: normal; line-height: 22px; widows: 1;" class="">Proposed solution</h2><p style="font-size: 14px; font-variant-ligatures: normal; font-variant-position: normal; font-variant-numeric: normal; font-variant-alternates: normal; font-variant-east-asian: normal; line-height: 22px; widows: 1;" class=""><font face="Helvetica" class=""><code style="line-height: 19px;" class="">swift test</code>&nbsp;should distinguish between unit test directories and executable directories, just as&nbsp;<code style="line-height: 19px;" class="">swift build</code>&nbsp;distinguishes between libary and executable directories.</font></p><p style="font-size: 14px; font-variant-ligatures: normal; font-variant-position: normal; font-variant-numeric: normal; font-variant-alternates: normal; font-variant-east-asian: normal; line-height: 22px; widows: 1;" class="">The&nbsp;<code style="line-height: 19px;" class="">test</code>&nbsp;command should, upon encountering a test executable directory, build the executable.</p><p style="font-size: 14px; font-variant-ligatures: normal; font-variant-position: normal; font-variant-numeric: normal; font-variant-alternates: normal; font-variant-east-asian: normal; line-height: 22px; widows: 1;" class="">If the test executable build fails,&nbsp;<code style="line-height: 19px;" class="">test</code>&nbsp;should report a test failure and return a nonzero exit code.</p><p style="font-size: 14px; font-variant-ligatures: normal; font-variant-position: normal; font-variant-numeric: normal; font-variant-alternates: normal; font-variant-east-asian: normal; line-height: 22px; widows: 1;" class="">If the build succeeds,&nbsp;<code style="line-height: 19px;" class="">test</code>&nbsp;should report a test success and clearly output the path to the resulting test executable, for consumption by external test harness scripts.</p><p style="font-size: 14px; font-variant-ligatures: normal; font-variant-position: normal; font-variant-numeric: normal; font-variant-alternates: normal; font-variant-east-asian: normal; line-height: 22px; widows: 1;" class="">Future improvements could include invoking a test command specified in&nbsp;<code style="line-height: 19px;" class="">Package.swift</code>&nbsp;upon successful build.</p><h2 id="detailed-design" style="font-weight: normal; font-variant-ligatures: normal; font-variant-position: normal; font-variant-numeric: normal; font-variant-alternates: normal; font-variant-east-asian: normal; line-height: 22px; widows: 1;" class="">Detailed design</h2><p style="font-size: 14px; font-variant-ligatures: normal; font-variant-position: normal; font-variant-numeric: normal; font-variant-alternates: normal; font-variant-east-asian: normal; line-height: 22px; widows: 1;" class="">I am unclear on the exact semantics of&nbsp;<code style="line-height: 19px;" class="">@testable import</code>&nbsp;(I see no difference when I remove the<code style="line-height: 19px;" class="">@testable</code>&nbsp;modifier from a test case), but I assume it has to do with linking a unit test against the library under test. Superficially, it makes sense that a test executable would have the same requirements and use the same syntax.</p><p style="font-size: 14px; font-variant-ligatures: normal; font-variant-position: normal; font-variant-numeric: normal; font-variant-alternates: normal; font-variant-east-asian: normal; line-height: 22px; widows: 1;" class=""><font face="Helvetica" class=""><code style="line-height: 19px;" class="">swift test</code>&nbsp;should output a list of successfully built executable test paths, for consumption by an external test harness. This should be a text file listing one path per line, so that simple shell scripts can run the tests without having to parse formats like json or yaml. The list should contain only executables that built successfully (or where deemed unchanged by dependency calculation), so that nonexistant and/or stale tests do not get executed. If a use case emerges that requires a list of all tests, then perhaps a complete listing could be produced separately.</font></p><h2 id="impact-on-existing-code" style="font-weight: normal; font-variant-ligatures: normal; font-variant-position: normal; font-variant-numeric: normal; font-variant-alternates: normal; font-variant-east-asian: normal; line-height: 22px; widows: 1;" class="">Impact on existing code</h2><p style="font-size: 14px; font-variant-ligatures: normal; font-variant-position: normal; font-variant-numeric: normal; font-variant-alternates: normal; font-variant-east-asian: normal; line-height: 22px; widows: 1;" class="">None;&nbsp;<code style="line-height: 19px;" class="">swift test</code>&nbsp;currently appears to ignore subdirectories in&nbsp;<code style="line-height: 19px;" class="">Tests</code>&nbsp;that do not contain XCTest-based unit tests.</p><h2 id="alternatives-considered" style="font-weight: normal; font-variant-ligatures: normal; font-variant-position: normal; font-variant-numeric: normal; font-variant-alternates: normal; font-variant-east-asian: normal; line-height: 22px; widows: 1;" class="">Alternatives considered</h2><h3 id="no-action" style="font-variant-ligatures: normal; font-variant-position: normal; font-variant-numeric: normal; font-variant-alternates: normal; font-variant-east-asian: normal; line-height: 22px; widows: 1;" class=""><span style="font-size: 15px; font-weight: normal;" class="">No action</span></h3><p style="font-size: 14px; font-variant-ligatures: normal; font-variant-position: normal; font-variant-numeric: normal; font-variant-alternates: normal; font-variant-east-asian: normal; line-height: 22px; widows: 1;" class="">See the list of problems with treating test executables as regular targets in the "Motivation" section above.</p><h3 id="complete-integration-testing-with-xctest" style="font-variant-ligatures: normal; font-variant-position: normal; font-variant-numeric: normal; font-variant-alternates: normal; font-variant-east-asian: normal; line-height: 22px; widows: 1;" class=""><span style="font-size: 15px; font-weight: normal;" class="">Complete integration testing with XCTest</span></h3><p style="font-variant-ligatures: normal; font-variant-position: normal; font-variant-numeric: normal; font-variant-alternates: normal; font-variant-east-asian: normal; line-height: 22px; widows: 1;" class=""><span style="font-size: 14px;" class="">This would be a much larger undertaking, and it seems likely that such a solution would necessitate the essentials of&nbsp;</span><span style="font-size: 14px;" class="">this proposal anyway.</span></p></div></div></blockquote></div><br class=""></body></html>