Skip to content

Commit f32827f

Browse files
committed
TestFoundation: make test_fileDescriptor more portable
This adjusts the fileDescriptor test to be more portable so that we can run it on Windows.
1 parent 120f749 commit f32827f

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

TestFoundation/TestFileHandle.swift

+8-8
Original file line numberDiff line numberDiff line change
@@ -356,17 +356,17 @@ class TestFileHandle : XCTestCase {
356356
Thread.sleep(forTimeInterval: 0.001)
357357
}
358358
}
359-
359+
360+
#if NS_FOUNDATION_ALLOWS_TESTABLE_IMPORT
360361
func test_fileDescriptor() throws {
361362
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+
366365
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")
368367
}
369-
368+
#endif
369+
370370
func test_availableData() {
371371
let handle = createFileHandle()
372372

@@ -498,7 +498,6 @@ class TestFileHandle : XCTestCase {
498498
("test_truncateFile", test_truncateFile),
499499
("test_readabilityHandlerCloseFileRace", test_readabilityHandlerCloseFileRace),
500500
("test_readabilityHandlerCloseFileRaceWithError", test_readabilityHandlerCloseFileRaceWithError),
501-
("test_fileDescriptor", test_fileDescriptor),
502501
("test_availableData", test_availableData),
503502
("test_readToEndOfFileInBackgroundAndNotify", test_readToEndOfFileInBackgroundAndNotify),
504503
("test_readToEndOfFileAndNotify", test_readToEndOfFileAndNotify),
@@ -509,6 +508,7 @@ class TestFileHandle : XCTestCase {
509508

510509
#if NS_FOUNDATION_ALLOWS_TESTABLE_IMPORT
511510
tests.append(contentsOf: [
511+
("test_fileDescriptor", test_fileDescriptor),
512512
("testHandleCreationAndCleanup", testHandleCreationAndCleanup),
513513
("testOffset", testOffset),
514514
])

0 commit comments

Comments
 (0)