@@ -44,7 +44,7 @@ final class BuildPlanTests: XCTestCase {
44
44
manifests: [
45
45
Manifest . createFileSystemManifest (
46
46
name: " fooPkg " ,
47
- path: . init( " /fooPkg " ) ,
47
+ path: . init( path : " /fooPkg " ) ,
48
48
products: [
49
49
ProductDescription ( name: " Logging " , type: . library( . dynamic) , targets: [ " FooLogging " ] ) ,
50
50
] ,
@@ -53,7 +53,7 @@ final class BuildPlanTests: XCTestCase {
53
53
] ) ,
54
54
Manifest . createFileSystemManifest (
55
55
name: " barPkg " ,
56
- path: . init( " /barPkg " ) ,
56
+ path: . init( path : " /barPkg " ) ,
57
57
products: [
58
58
ProductDescription ( name: " Logging " , type: . library( . static) , targets: [ " BarLogging " ] ) ,
59
59
] ,
@@ -62,11 +62,11 @@ final class BuildPlanTests: XCTestCase {
62
62
] ) ,
63
63
Manifest . createRootManifest (
64
64
name: " thisPkg " ,
65
- path: . init( " /thisPkg " ) ,
65
+ path: . init( path : " /thisPkg " ) ,
66
66
toolsVersion: . vNext,
67
67
dependencies: [
68
- . localSourceControl( path: . init( " /fooPkg " ) , requirement: . upToNextMajor( from: " 1.0.0 " ) ) ,
69
- . localSourceControl( path: . init( " /barPkg " ) , requirement: . upToNextMajor( from: " 2.0.0 " ) ) ,
68
+ . localSourceControl( path: . init( path : " /fooPkg " ) , requirement: . upToNextMajor( from: " 1.0.0 " ) ) ,
69
+ . localSourceControl( path: . init( path : " /barPkg " ) , requirement: . upToNextMajor( from: " 2.0.0 " ) ) ,
70
70
] ,
71
71
targets: [
72
72
TargetDescription ( name: " exe " ,
@@ -103,7 +103,7 @@ final class BuildPlanTests: XCTestCase {
103
103
manifests: [
104
104
Manifest . createFileSystemManifest (
105
105
name: " fooPkg " ,
106
- path: . init( " /fooPkg " ) ,
106
+ path: . init( path : " /fooPkg " ) ,
107
107
products: [
108
108
ProductDescription ( name: " Logging " , type: . library( . dynamic) , targets: [ " FooLogging " ] ) ,
109
109
] ,
@@ -112,7 +112,7 @@ final class BuildPlanTests: XCTestCase {
112
112
] ) ,
113
113
Manifest . createFileSystemManifest (
114
114
name: " barPkg " ,
115
- path: . init( " /barPkg " ) ,
115
+ path: . init( path : " /barPkg " ) ,
116
116
products: [
117
117
ProductDescription ( name: " Logging " , type: . library( . automatic) , targets: [ " BarLogging " ] ) ,
118
118
] ,
@@ -121,11 +121,11 @@ final class BuildPlanTests: XCTestCase {
121
121
] ) ,
122
122
Manifest . createRootManifest (
123
123
name: " thisPkg " ,
124
- path: . init( " /thisPkg " ) ,
124
+ path: . init( path : " /thisPkg " ) ,
125
125
toolsVersion: . vNext,
126
126
dependencies: [
127
- . localSourceControl( path: . init( " /fooPkg " ) , requirement: . upToNextMajor( from: " 1.0.0 " ) ) ,
128
- . localSourceControl( path: . init( " /barPkg " ) , requirement: . upToNextMajor( from: " 2.0.0 " ) ) ,
127
+ . localSourceControl( path: . init( path : " /fooPkg " ) , requirement: . upToNextMajor( from: " 1.0.0 " ) ) ,
128
+ . localSourceControl( path: . init( path : " /barPkg " ) , requirement: . upToNextMajor( from: " 2.0.0 " ) ) ,
129
129
] ,
130
130
targets: [
131
131
TargetDescription ( name: " exe " ,
@@ -169,7 +169,7 @@ final class BuildPlanTests: XCTestCase {
169
169
manifests: [
170
170
Manifest . createFileSystemManifest (
171
171
name: " bazPkg " ,
172
- path: . init( " /bazPkg " ) ,
172
+ path: . init( path : " /bazPkg " ) ,
173
173
products: [
174
174
ProductDescription ( name: " Logging " , type: . library( . automatic) , targets: [ " BazLogging " ] ) ,
175
175
] ,
@@ -178,7 +178,7 @@ final class BuildPlanTests: XCTestCase {
178
178
] ) ,
179
179
Manifest . createFileSystemManifest (
180
180
name: " barPkg " ,
181
- path: . init( " /barPkg " ) ,
181
+ path: . init( path : " /barPkg " ) ,
182
182
products: [
183
183
ProductDescription ( name: " Logging " , type: . library( . automatic) , targets: [ " BarLogging " ] ) ,
184
184
] ,
@@ -187,11 +187,11 @@ final class BuildPlanTests: XCTestCase {
187
187
] ) ,
188
188
Manifest . createFileSystemManifest (
189
189
name: " fooPkg " ,
190
- path: . init( " /fooPkg " ) ,
190
+ path: . init( path : " /fooPkg " ) ,
191
191
toolsVersion: . vNext,
192
192
dependencies: [
193
- . localSourceControl( path: . init( " /barPkg " ) , requirement: . upToNextMajor( from: " 1.0.0 " ) ) ,
194
- . localSourceControl( path: . init( " /bazPkg " ) , requirement: . upToNextMajor( from: " 1.0.0 " ) ) ,
193
+ . localSourceControl( path: . init( path : " /barPkg " ) , requirement: . upToNextMajor( from: " 1.0.0 " ) ) ,
194
+ . localSourceControl( path: . init( path : " /bazPkg " ) , requirement: . upToNextMajor( from: " 1.0.0 " ) ) ,
195
195
] ,
196
196
products: [
197
197
ProductDescription ( name: " Logging " , type: . library( . automatic) , targets: [ " FooLogging " ] ) ,
@@ -208,7 +208,7 @@ final class BuildPlanTests: XCTestCase {
208
208
] ) ,
209
209
Manifest . createFileSystemManifest (
210
210
name: " xPkg " ,
211
- path: . init( " /xPkg " ) ,
211
+ path: . init( path : " /xPkg " ) ,
212
212
products: [
213
213
ProductDescription ( name: " Utils " , type: . library( . automatic) , targets: [ " XUtils " ] ) ,
214
214
] ,
@@ -217,7 +217,7 @@ final class BuildPlanTests: XCTestCase {
217
217
] ) ,
218
218
Manifest . createFileSystemManifest (
219
219
name: " yPkg " ,
220
- path: . init( " /yPkg " ) ,
220
+ path: . init( path : " /yPkg " ) ,
221
221
products: [
222
222
ProductDescription ( name: " Utils " , type: . library( . automatic) , targets: [ " YUtils " ] ) ,
223
223
] ,
@@ -226,12 +226,12 @@ final class BuildPlanTests: XCTestCase {
226
226
] ) ,
227
227
Manifest . createRootManifest (
228
228
name: " thisPkg " ,
229
- path: . init( " /thisPkg " ) ,
229
+ path: . init( path : " /thisPkg " ) ,
230
230
toolsVersion: . vNext,
231
231
dependencies: [
232
- . localSourceControl( path: . init( " /xPkg " ) , requirement: . upToNextMajor( from: " 1.0.0 " ) ) ,
233
- . localSourceControl( path: . init( " /yPkg " ) , requirement: . upToNextMajor( from: " 1.0.0 " ) ) ,
234
- . localSourceControl( path: . init( " /fooPkg " ) , requirement: . upToNextMajor( from: " 1.0.0 " ) ) ,
232
+ . localSourceControl( path: . init( path : " /xPkg " ) , requirement: . upToNextMajor( from: " 1.0.0 " ) ) ,
233
+ . localSourceControl( path: . init( path : " /yPkg " ) , requirement: . upToNextMajor( from: " 1.0.0 " ) ) ,
234
+ . localSourceControl( path: . init( path : " /fooPkg " ) , requirement: . upToNextMajor( from: " 1.0.0 " ) ) ,
235
235
] ,
236
236
targets: [
237
237
TargetDescription ( name: " exe " ,
@@ -279,7 +279,7 @@ final class BuildPlanTests: XCTestCase {
279
279
manifests: [
280
280
Manifest . createFileSystemManifest (
281
281
name: " bazPkg " ,
282
- path: . init( " /bazPkg " ) ,
282
+ path: . init( path : " /bazPkg " ) ,
283
283
products: [
284
284
ProductDescription ( name: " Logging " , type: . library( . automatic) , targets: [ " BazLogging " ] ) ,
285
285
] ,
@@ -288,7 +288,7 @@ final class BuildPlanTests: XCTestCase {
288
288
] ) ,
289
289
Manifest . createFileSystemManifest (
290
290
name: " barPkg " ,
291
- path: . init( " /barPkg " ) ,
291
+ path: . init( path : " /barPkg " ) ,
292
292
products: [
293
293
ProductDescription ( name: " Logging " , type: . library( . automatic) , targets: [ " BarLogging " ] ) ,
294
294
] ,
@@ -297,11 +297,11 @@ final class BuildPlanTests: XCTestCase {
297
297
] ) ,
298
298
Manifest . createFileSystemManifest (
299
299
name: " fooPkg " ,
300
- path: . init( " /fooPkg " ) ,
300
+ path: . init( path : " /fooPkg " ) ,
301
301
toolsVersion: . vNext,
302
302
dependencies: [
303
- . localSourceControl( path: . init( " /barPkg " ) , requirement: . upToNextMajor( from: " 1.0.0 " ) ) ,
304
- . localSourceControl( path: . init( " /bazPkg " ) , requirement: . upToNextMajor( from: " 1.0.0 " ) ) ,
303
+ . localSourceControl( path: . init( path : " /barPkg " ) , requirement: . upToNextMajor( from: " 1.0.0 " ) ) ,
304
+ . localSourceControl( path: . init( path : " /bazPkg " ) , requirement: . upToNextMajor( from: " 1.0.0 " ) ) ,
305
305
] ,
306
306
products: [
307
307
ProductDescription ( name: " Logging " , type: . library( . automatic) , targets: [ " Logging " ] ) ,
@@ -318,9 +318,9 @@ final class BuildPlanTests: XCTestCase {
318
318
] ) ,
319
319
Manifest . createRootManifest (
320
320
name: " thisPkg " ,
321
- path: . init( " /thisPkg " ) ,
321
+ path: . init( path : " /thisPkg " ) ,
322
322
dependencies: [
323
- . localSourceControl( path: . init( " /fooPkg " ) , requirement: . upToNextMajor( from: " 1.0.0 " ) ) ,
323
+ . localSourceControl( path: . init( path : " /fooPkg " ) , requirement: . upToNextMajor( from: " 1.0.0 " ) ) ,
324
324
] ,
325
325
targets: [
326
326
TargetDescription ( name: " exe " ,
@@ -359,10 +359,10 @@ final class BuildPlanTests: XCTestCase {
359
359
manifests: [
360
360
Manifest . createFileSystemManifest (
361
361
name: " fooPkg " ,
362
- path: . init( " /fooPkg " ) ,
362
+ path: . init( path : " /fooPkg " ) ,
363
363
toolsVersion: . vNext,
364
364
dependencies: [
365
- . localSourceControl( path: . init( " /barPkg " ) , requirement: . upToNextMajor( from: " 1.0.0 " ) ) ,
365
+ . localSourceControl( path: . init( path : " /barPkg " ) , requirement: . upToNextMajor( from: " 1.0.0 " ) ) ,
366
366
] ,
367
367
products: [
368
368
ProductDescription ( name: " Logging " , type: . library( . automatic) , targets: [ " FooLogging " ] ) ,
@@ -376,7 +376,7 @@ final class BuildPlanTests: XCTestCase {
376
376
] ) ,
377
377
Manifest . createFileSystemManifest (
378
378
name: " barPkg " ,
379
- path: . init( " /barPkg " ) ,
379
+ path: . init( path : " /barPkg " ) ,
380
380
products: [
381
381
ProductDescription ( name: " Logging " , type: . library( . automatic) , targets: [ " BarLogging " ] ) ,
382
382
] ,
@@ -385,9 +385,9 @@ final class BuildPlanTests: XCTestCase {
385
385
] ) ,
386
386
Manifest . createRootManifest (
387
387
name: " thisPkg " ,
388
- path: . init( " /thisPkg " ) ,
388
+ path: . init( path : " /thisPkg " ) ,
389
389
dependencies: [
390
- . localSourceControl( path: . init( " /fooPkg " ) , requirement: . upToNextMajor( from: " 1.0.0 " ) ) ,
390
+ . localSourceControl( path: . init( path : " /fooPkg " ) , requirement: . upToNextMajor( from: " 1.0.0 " ) ) ,
391
391
] ,
392
392
targets: [
393
393
TargetDescription ( name: " exe " ,
@@ -425,7 +425,7 @@ final class BuildPlanTests: XCTestCase {
425
425
manifests: [
426
426
Manifest . createFileSystemManifest (
427
427
name: " fooPkg " ,
428
- path: . init( " /fooPkg " ) ,
428
+ path: . init( path : " /fooPkg " ) ,
429
429
toolsVersion: . vNext,
430
430
products: [
431
431
ProductDescription ( name: " Logging " , type: . library( . automatic) , targets: [ " FooLogging " ] ) ,
@@ -435,7 +435,7 @@ final class BuildPlanTests: XCTestCase {
435
435
] ) ,
436
436
Manifest . createFileSystemManifest (
437
437
name: " barPkg " ,
438
- path: . init( " /barPkg " ) ,
438
+ path: . init( path : " /barPkg " ) ,
439
439
products: [
440
440
ProductDescription ( name: " Logging " , type: . library( . automatic) , targets: [ " BarLogging " ] ) ,
441
441
] ,
@@ -444,10 +444,10 @@ final class BuildPlanTests: XCTestCase {
444
444
] ) ,
445
445
Manifest . createRootManifest (
446
446
name: " thisPkg " ,
447
- path: . init( " /thisPkg " ) ,
447
+ path: . init( path : " /thisPkg " ) ,
448
448
dependencies: [
449
- . localSourceControl( path: . init( " /fooPkg " ) , requirement: . upToNextMajor( from: " 1.0.0 " ) ) ,
450
- . localSourceControl( path: . init( " /barPkg " ) , requirement: . upToNextMajor( from: " 2.0.0 " ) ) ,
449
+ . localSourceControl( path: . init( path : " /fooPkg " ) , requirement: . upToNextMajor( from: " 1.0.0 " ) ) ,
450
+ . localSourceControl( path: . init( path : " /barPkg " ) , requirement: . upToNextMajor( from: " 2.0.0 " ) ) ,
451
451
] ,
452
452
targets: [
453
453
TargetDescription ( name: " exe " ,
@@ -484,7 +484,7 @@ final class BuildPlanTests: XCTestCase {
484
484
manifests: [
485
485
Manifest . createFileSystemManifest (
486
486
name: " fooPkg " ,
487
- path: . init( " /fooPkg " ) ,
487
+ path: . init( path : " /fooPkg " ) ,
488
488
products: [
489
489
ProductDescription ( name: " Logging " , type: . library( . automatic) , targets: [ " FooLogging " ] ) ,
490
490
] ,
@@ -493,7 +493,7 @@ final class BuildPlanTests: XCTestCase {
493
493
] ) ,
494
494
Manifest . createFileSystemManifest (
495
495
name: " barPkg " ,
496
- path: . init( " /barPkg " ) ,
496
+ path: . init( path : " /barPkg " ) ,
497
497
products: [
498
498
ProductDescription ( name: " Logging " , type: . library( . automatic) , targets: [ " BarLogging " ] ) ,
499
499
] ,
@@ -502,11 +502,11 @@ final class BuildPlanTests: XCTestCase {
502
502
] ) ,
503
503
Manifest . createRootManifest (
504
504
name: " thisPkg " ,
505
- path: . init( " /thisPkg " ) ,
505
+ path: . init( path : " /thisPkg " ) ,
506
506
toolsVersion: . vNext,
507
507
dependencies: [
508
- . localSourceControl( path: . init( " /fooPkg " ) , requirement: . upToNextMajor( from: " 1.0.0 " ) ) ,
509
- . localSourceControl( path: . init( " /barPkg " ) , requirement: . upToNextMajor( from: " 2.0.0 " ) ) ,
508
+ . localSourceControl( path: . init( path : " /fooPkg " ) , requirement: . upToNextMajor( from: " 1.0.0 " ) ) ,
509
+ . localSourceControl( path: . init( path : " /barPkg " ) , requirement: . upToNextMajor( from: " 2.0.0 " ) ) ,
510
510
] ,
511
511
targets: [
512
512
TargetDescription ( name: " exe " ,
0 commit comments