-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TestFoundation: construct FileHandle
properly on Windows
#2242
Conversation
This fixes the `FileHandle` construction on Windows so that we can continue to execute more of the tests.
@swift-ci please test |
} | ||
let fd = _open_osfhandle(intptr_t(bitPattern: hDirectory), 0) | ||
if fd == -1 { | ||
fatalError("unable to associate file descriptor with handle") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wouldn't it be better to make this function return a FileHandle?
so this can return nil
and be XCTFail
ed by the caller, rather than stopping all of the tests?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I followed what the old path was doing (fatal error'ing). I do like that, and since you asked, I'll go ahead and do that.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actually, lets do that in a follow up, I have a huge patch stack locally for the DEPLOYMENT_TARGET_*
to TARGET_OS_*
and that is making things more complicated.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I took a look at this and this is really ugly without some of the internal helpers (i.e. _NSErrorWithErrno
and _NSErrorWithWindowsError
). Do you want to convert this to a testable import test? CC: @millenomi
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note that expectTrue()
below doesn't invoke fatalError()
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not sure if we can do anything else here. Its an internal error because this implies that the handle that was provided was invalid. It would indicate an error in the test itself.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm okay with that.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Meaning: I'm okay error'ing out if the test is executing such that '.' is not an accessible directory for reading.
ping? |
This fixes the
FileHandle
construction on Windows so that we cancontinue to execute more of the tests.