@@ -49,7 +49,7 @@ struct PathTests {
49
49
}
50
50
51
51
@Test (
52
- . skipHostOS( . windows) ,
52
+ // skipHostOS(.windows),
53
53
arguments: [
54
54
( path: " /ab//cd//ef " , expected: ( windows ? #"\ab\cd\ef"# : " /ab/cd/ef " ) , label: " repeated path seperators " ) , // skip on windows
55
55
( path: " /ab///cd//ef " , expected: ( windows ? #"\ab\cd\ef"# : " /ab/cd/ef " ) , label: " repeated path seperators " ) , // skip on windows
@@ -97,7 +97,7 @@ struct PathTests {
97
97
}
98
98
99
99
@Test (
100
- . skipHostOS( . windows) ,
100
+ // skipHostOS(.windows),
101
101
arguments: [
102
102
( path: " / " , expected: ( windows ? #"\"# : " / " ) ) ,
103
103
( path: " /a " , expected: ( windows ? #"\"# : " / " ) ) ,
@@ -113,7 +113,7 @@ struct PathTests {
113
113
}
114
114
115
115
@Test (
116
- . skipHostOS( . windows) ,
116
+ // skipHostOS(.windows),
117
117
arguments: [
118
118
( path: " / " , expected: ( windows ? #"\"# : " / " ) ) ,
119
119
( path: " /a " , expected: " a " ) ,
@@ -128,7 +128,7 @@ struct PathTests {
128
128
}
129
129
130
130
@Test (
131
- . skipHostOS( . windows) ,
131
+ // skipHostOS(.windows),
132
132
arguments: [
133
133
( path: " / " , expected: ( windows ? #"\"# : " / " ) ) ,
134
134
( path: " /a " , expected: " a " ) ,
@@ -167,7 +167,7 @@ struct PathTests {
167
167
}
168
168
169
169
@Test (
170
- . skipHostOS( . windows) ,
170
+ // skipHostOS(.windows),
171
171
arguments: [
172
172
( path: " / " , expected: [ " / " ] ) ,
173
173
( path: " /. " , expected: [ " / " ] ) ,
@@ -244,7 +244,7 @@ struct PathTests {
244
244
}
245
245
246
246
@Test (
247
- . skipHostOS( . windows)
247
+ // skipHostOS(.windows)
248
248
)
249
249
func absolutePathValidation( ) throws {
250
250
#expect( throws: Never . self) {
@@ -261,7 +261,7 @@ struct PathTests {
261
261
}
262
262
263
263
@Test (
264
- . skipHostOS( . windows)
264
+ // skipHostOS(.windows)
265
265
)
266
266
func comparison( ) {
267
267
#expect( AbsolutePath ( " / " ) <= AbsolutePath ( " / " ) ) ;
@@ -299,7 +299,7 @@ struct PathTests {
299
299
}
300
300
301
301
@Test (
302
- . skipHostOS( . windows) ,
302
+ // skipHostOS(.windows),
303
303
arguments: [
304
304
( path: " ab//cd//ef " , expected: ( windows ? #"ab\cd\ef"# : " ab/cd/ef " ) , label: " repeated path seperators " ) ,
305
305
( path: " ab//cd///ef " , expected: ( windows ? #"ab\cd\ef"# : " ab/cd/ef " ) , label: " repeated path seperators " ) ,
@@ -354,7 +354,7 @@ struct PathTests {
354
354
}
355
355
356
356
@Test (
357
- . skipHostOS( . windows) ,
357
+ // skipHostOS(.windows),
358
358
arguments: [
359
359
( path: " ab/c//d/ " , expected: ( windows ? #"ab\c"# : " ab/c " ) ) ,
360
360
( path: " ../a " , expected: " .. " ) ,
@@ -374,7 +374,7 @@ struct PathTests {
374
374
}
375
375
376
376
@Test (
377
- . skipHostOS( . windows) ,
377
+ // skipHostOS(.windows),
378
378
arguments: [
379
379
( path: " ../.. " , expected: " .. " ) ,
380
380
( path: " ../a " , expected: " a " ) ,
@@ -394,7 +394,7 @@ struct PathTests {
394
394
}
395
395
396
396
@Test (
397
- . skipHostOS( . windows) ,
397
+ // skipHostOS(.windows),
398
398
arguments: [
399
399
( path: " ../.. " , expected: " .. " ) ,
400
400
( path: " ../a " , expected: " a " ) ,
@@ -442,7 +442,7 @@ struct PathTests {
442
442
}
443
443
444
444
@Test (
445
- . skipHostOS( . windows) ,
445
+ // skipHostOS(.windows),
446
446
arguments: [
447
447
( path: " " , expected: [ " . " ] ) ,
448
448
( path: " . " , expected: [ " . " ] ) ,
@@ -469,7 +469,7 @@ struct PathTests {
469
469
}
470
470
471
471
@Test (
472
- . skipHostOS( . windows)
472
+ // skipHostOS(.windows)
473
473
)
474
474
func relativePathValidation( ) throws {
475
475
#expect( throws: Never . self) {
@@ -484,7 +484,7 @@ struct PathTests {
484
484
}
485
485
486
486
@Test (
487
- . skipHostOS( . windows)
487
+ // skipHostOS(.windows)
488
488
)
489
489
@available ( * , deprecated)
490
490
func concatenation( ) throws {
@@ -525,7 +525,7 @@ struct PathTests {
525
525
}
526
526
527
527
@Test (
528
- . skipHostOS( . windows)
528
+ // skipHostOS(.windows)
529
529
)
530
530
func relativePathFromAbsolutePaths( ) throws {
531
531
#expect( AbsolutePath ( " / " ) . relative ( to: AbsolutePath ( " / " ) ) == RelativePath ( " . " ) ) ;
@@ -538,7 +538,7 @@ struct PathTests {
538
538
}
539
539
540
540
@Test (
541
- . skipHostOS( . windows)
541
+ // skipHostOS(.windows)
542
542
)
543
543
func codable( ) throws {
544
544
struct Foo : Codable , Equatable {
0 commit comments