@@ -356,17 +356,17 @@ class TestFileHandle : XCTestCase {
356
356
Thread . sleep ( forTimeInterval: 0.001 )
357
357
}
358
358
}
359
-
359
+
360
+ #if NS_FOUNDATION_ALLOWS_TESTABLE_IMPORT
360
361
func test_fileDescriptor( ) throws {
361
362
let handle = createFileHandle ( )
362
- #if !os(Windows)
363
- XCTAssertTrue ( handle. fileDescriptor > 0 , " File descriptor after opening should be valid (is \( handle. fileDescriptor) ) " )
364
- #endif
365
-
363
+ XCTAssertTrue ( handle. _isPlatformHandleValid, " File descriptor after opening should be valid " )
364
+
366
365
try handle. close ( )
367
- XCTAssertEqual ( handle. fileDescriptor , - 1 , " File descriptor after closing should not be valid " )
366
+ XCTAssertFalse ( handle. _isPlatformHandleValid , " File descriptor after closing should not be valid " )
368
367
}
369
-
368
+ #endif
369
+
370
370
func test_availableData( ) {
371
371
let handle = createFileHandle ( )
372
372
@@ -498,7 +498,6 @@ class TestFileHandle : XCTestCase {
498
498
( " test_truncateFile " , test_truncateFile) ,
499
499
( " test_readabilityHandlerCloseFileRace " , test_readabilityHandlerCloseFileRace) ,
500
500
( " test_readabilityHandlerCloseFileRaceWithError " , test_readabilityHandlerCloseFileRaceWithError) ,
501
- ( " test_fileDescriptor " , test_fileDescriptor) ,
502
501
( " test_availableData " , test_availableData) ,
503
502
( " test_readToEndOfFileInBackgroundAndNotify " , test_readToEndOfFileInBackgroundAndNotify) ,
504
503
( " test_readToEndOfFileAndNotify " , test_readToEndOfFileAndNotify) ,
@@ -509,6 +508,7 @@ class TestFileHandle : XCTestCase {
509
508
510
509
#if NS_FOUNDATION_ALLOWS_TESTABLE_IMPORT
511
510
tests. append ( contentsOf: [
511
+ ( " test_fileDescriptor " , test_fileDescriptor) ,
512
512
( " testHandleCreationAndCleanup " , testHandleCreationAndCleanup) ,
513
513
( " testOffset " , testOffset) ,
514
514
] )
0 commit comments