@@ -30,7 +30,7 @@ class PluginTests: XCTestCase {
30
30
XCTAssert ( stdout. contains ( " Linking MySourceGenBuildTool " ) , " stdout: \n \( stdout) " )
31
31
XCTAssert ( stdout. contains ( " Generating foo.swift from foo.dat " ) , " stdout: \n \( stdout) " )
32
32
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) " )
34
34
}
35
35
}
36
36
@@ -43,7 +43,7 @@ class PluginTests: XCTestCase {
43
43
XCTAssert ( stdout. contains ( " Linking MySourceGenBuildTool " ) , " stdout: \n \( stdout) " )
44
44
XCTAssert ( stdout. contains ( " Generating foo.swift from foo.dat " ) , " stdout: \n \( stdout) " )
45
45
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) " )
47
47
}
48
48
}
49
49
@@ -56,7 +56,7 @@ class PluginTests: XCTestCase {
56
56
XCTAssert ( stdout. contains ( " Compiling MyOtherLocalTool bar.swift " ) , " stdout: \n \( stdout) " )
57
57
XCTAssert ( stdout. contains ( " Compiling MyOtherLocalTool baz.swift " ) , " stdout: \n \( stdout) " )
58
58
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) " )
60
60
}
61
61
}
62
62
@@ -125,7 +125,7 @@ class PluginTests: XCTestCase {
125
125
XCTAssert ( stdout. contains ( " Linking MySourceGenBuildTool " ) , " stdout: \n \( stdout) " )
126
126
XCTAssert ( stdout. contains ( " Generating foo.swift from foo.dat " ) , " stdout: \n \( stdout) " )
127
127
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) " )
129
129
}
130
130
}
131
131
@@ -138,7 +138,7 @@ class PluginTests: XCTestCase {
138
138
try fixture ( name: " Miscellaneous/Plugins " ) { fixturePath in
139
139
let ( stdout, _) = try executeSwiftBuild ( fixturePath. appending ( " SandboxTesterPlugin " ) , configuration: . Debug, extraArgs: [ " --product " , " MyLocalTool " ] )
140
140
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) " )
142
142
}
143
143
}
144
144
@@ -151,7 +151,7 @@ class PluginTests: XCTestCase {
151
151
try fixture ( name: " Miscellaneous/Plugins " ) { fixturePath in
152
152
let ( stdout, _) = try executeSwiftBuild ( fixturePath. appending ( " MyBinaryToolPlugin " ) , configuration: . Debug, extraArgs: [ " --product " , " MyLocalTool " ] )
153
153
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) " )
155
155
}
156
156
}
157
157
@@ -164,7 +164,7 @@ class PluginTests: XCTestCase {
164
164
try fixture ( name: " Miscellaneous/Plugins " ) { fixturePath in
165
165
let ( stdout, _) = try executeSwiftBuild ( fixturePath. appending ( " BinaryToolProductPlugin " ) , configuration: . Debug, extraArgs: [ " --product " , " MyLocalTool " ] )
166
166
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) " )
168
168
}
169
169
}
170
170
@@ -525,7 +525,7 @@ class PluginTests: XCTestCase {
525
525
XCTAssert ( stderr. contains ( " Linking RemoteTool " ) , " stdout: \n \( stderr) \n \( stdout) " )
526
526
XCTAssert ( stderr. contains ( " Linking LocalTool " ) , " stdout: \n \( stderr) \n \( stdout) " )
527
527
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) " )
529
529
XCTAssert ( stdout. contains ( " A message from the remote tool. " ) , " stdout: \n \( stderr) \n \( stdout) " )
530
530
XCTAssert ( stdout. contains ( " A message from the local tool. " ) , " stdout: \n \( stderr) \n \( stdout) " )
531
531
XCTAssert ( stdout. contains ( " A message from the implied local tool. " ) , " stdout: \n \( stderr) \n \( stdout) " )
@@ -1065,7 +1065,7 @@ class PluginTests: XCTestCase {
1065
1065
XCTAssert ( stdout. contains ( " Linking MySourceGenBuildTool " ) , " stdout: \n \( stdout) " )
1066
1066
XCTAssert ( stdout. contains ( " Creating foo.swift from foo.dat " ) , " stdout: \n \( stdout) " )
1067
1067
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) " )
1069
1069
}
1070
1070
}
1071
1071
0 commit comments