@@ -30,7 +30,7 @@ class PluginTests: XCTestCase {
3030 XCTAssert ( stdout. contains ( " Linking MySourceGenBuildTool " ) , " stdout: \n \( stdout) " )
3131 XCTAssert ( stdout. contains ( " Generating foo.swift from foo.dat " ) , " stdout: \n \( stdout) " )
3232 XCTAssert ( stdout. contains ( " Linking MyLocalTool " ) , " stdout: \n \( stdout) " )
33- XCTAssert ( stdout. contains ( " Build complete! " ) , " stdout: \n \( stdout) " )
33+ XCTAssert ( stdout. contains ( " Build of product 'MyLocalTool' complete! " ) , " stdout: \n \( stdout) " )
3434 }
3535 }
3636
@@ -43,7 +43,7 @@ class PluginTests: XCTestCase {
4343 XCTAssert ( stdout. contains ( " Linking MySourceGenBuildTool " ) , " stdout: \n \( stdout) " )
4444 XCTAssert ( stdout. contains ( " Generating foo.swift from foo.dat " ) , " stdout: \n \( stdout) " )
4545 XCTAssert ( stdout. contains ( " Linking MyTool " ) , " stdout: \n \( stdout) " )
46- XCTAssert ( stdout. contains ( " Build complete! " ) , " stdout: \n \( stdout) " )
46+ XCTAssert ( stdout. contains ( " Build of product 'MyTool' complete! " ) , " stdout: \n \( stdout) " )
4747 }
4848 }
4949
@@ -56,7 +56,7 @@ class PluginTests: XCTestCase {
5656 XCTAssert ( stdout. contains ( " Compiling MyOtherLocalTool bar.swift " ) , " stdout: \n \( stdout) " )
5757 XCTAssert ( stdout. contains ( " Compiling MyOtherLocalTool baz.swift " ) , " stdout: \n \( stdout) " )
5858 XCTAssert ( stdout. contains ( " Linking MyOtherLocalTool " ) , " stdout: \n \( stdout) " )
59- XCTAssert ( stdout. contains ( " Build complete! " ) , " stdout: \n \( stdout) " )
59+ XCTAssert ( stdout. contains ( " Build of product 'MyOtherLocalTool' complete! " ) , " stdout: \n \( stdout) " )
6060 }
6161 }
6262
@@ -125,7 +125,7 @@ class PluginTests: XCTestCase {
125125 XCTAssert ( stdout. contains ( " Linking MySourceGenBuildTool " ) , " stdout: \n \( stdout) " )
126126 XCTAssert ( stdout. contains ( " Generating foo.swift from foo.dat " ) , " stdout: \n \( stdout) " )
127127 XCTAssert ( stdout. contains ( " Linking MyLocalTool " ) , " stdout: \n \( stdout) " )
128- XCTAssert ( stdout. contains ( " Build complete! " ) , " stdout: \n \( stdout) " )
128+ XCTAssert ( stdout. contains ( " Build of product 'MyLocalTool' complete! " ) , " stdout: \n \( stdout) " )
129129 }
130130 }
131131
@@ -138,7 +138,7 @@ class PluginTests: XCTestCase {
138138 try fixture ( name: " Miscellaneous/Plugins " ) { fixturePath in
139139 let ( stdout, _) = try executeSwiftBuild ( fixturePath. appending ( " SandboxTesterPlugin " ) , configuration: . Debug, extraArgs: [ " --product " , " MyLocalTool " ] )
140140 XCTAssert ( stdout. contains ( " Linking MyLocalTool " ) , " stdout: \n \( stdout) " )
141- XCTAssert ( stdout. contains ( " Build complete! " ) , " stdout: \n \( stdout) " )
141+ XCTAssert ( stdout. contains ( " Build of product 'MyLocalTool' complete! " ) , " stdout: \n \( stdout) " )
142142 }
143143 }
144144
@@ -151,7 +151,7 @@ class PluginTests: XCTestCase {
151151 try fixture ( name: " Miscellaneous/Plugins " ) { fixturePath in
152152 let ( stdout, _) = try executeSwiftBuild ( fixturePath. appending ( " MyBinaryToolPlugin " ) , configuration: . Debug, extraArgs: [ " --product " , " MyLocalTool " ] )
153153 XCTAssert ( stdout. contains ( " Linking MyLocalTool " ) , " stdout: \n \( stdout) " )
154- XCTAssert ( stdout. contains ( " Build complete! " ) , " stdout: \n \( stdout) " )
154+ XCTAssert ( stdout. contains ( " Build of product 'MyLocalTool' complete! " ) , " stdout: \n \( stdout) " )
155155 }
156156 }
157157
@@ -164,7 +164,7 @@ class PluginTests: XCTestCase {
164164 try fixture ( name: " Miscellaneous/Plugins " ) { fixturePath in
165165 let ( stdout, _) = try executeSwiftBuild ( fixturePath. appending ( " BinaryToolProductPlugin " ) , configuration: . Debug, extraArgs: [ " --product " , " MyLocalTool " ] )
166166 XCTAssert ( stdout. contains ( " Linking MyLocalTool " ) , " stdout: \n \( stdout) " )
167- XCTAssert ( stdout. contains ( " Build complete! " ) , " stdout: \n \( stdout) " )
167+ XCTAssert ( stdout. contains ( " Build of product 'MyLocalTool' complete! " ) , " stdout: \n \( stdout) " )
168168 }
169169 }
170170
@@ -525,7 +525,7 @@ class PluginTests: XCTestCase {
525525 XCTAssert ( stderr. contains ( " Linking RemoteTool " ) , " stdout: \n \( stderr) \n \( stdout) " )
526526 XCTAssert ( stderr. contains ( " Linking LocalTool " ) , " stdout: \n \( stderr) \n \( stdout) " )
527527 XCTAssert ( stderr. contains ( " Linking ImpliedLocalTool " ) , " stdout: \n \( stderr) \n \( stdout) " )
528- XCTAssert ( stderr. contains ( " Build complete! " ) , " stdout: \n \( stderr) \n \( stdout) " )
528+ XCTAssert ( stderr. contains ( " Build of product 'ImpliedLocalTool' complete! " ) , " stdout: \n \( stderr) \n \( stdout) " )
529529 XCTAssert ( stdout. contains ( " A message from the remote tool. " ) , " stdout: \n \( stderr) \n \( stdout) " )
530530 XCTAssert ( stdout. contains ( " A message from the local tool. " ) , " stdout: \n \( stderr) \n \( stdout) " )
531531 XCTAssert ( stdout. contains ( " A message from the implied local tool. " ) , " stdout: \n \( stderr) \n \( stdout) " )
@@ -1065,7 +1065,7 @@ class PluginTests: XCTestCase {
10651065 XCTAssert ( stdout. contains ( " Linking MySourceGenBuildTool " ) , " stdout: \n \( stdout) " )
10661066 XCTAssert ( stdout. contains ( " Creating foo.swift from foo.dat " ) , " stdout: \n \( stdout) " )
10671067 XCTAssert ( stdout. contains ( " Linking MyLocalTool " ) , " stdout: \n \( stdout) " )
1068- XCTAssert ( stdout. contains ( " Build complete! " ) , " stdout: \n \( stdout) " )
1068+ XCTAssert ( stdout. contains ( " Build of product 'MyLocalTool' complete! " ) , " stdout: \n \( stdout) " )
10691069 }
10701070 }
10711071
0 commit comments