Skip to content
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

Merged
merged 1 commit into from
Jul 2, 2019

Conversation

compnerd
Copy link
Member

@compnerd compnerd commented May 9, 2019

This fixes the FileHandle construction on Windows so that we can
continue to execute more of the tests.

This fixes the `FileHandle` construction on Windows so that we can
continue to execute more of the tests.
@compnerd
Copy link
Member Author

compnerd commented May 9, 2019

@swift-ci please test

}
let fd = _open_osfhandle(intptr_t(bitPattern: hDirectory), 0)
if fd == -1 {
fatalError("unable to associate file descriptor with handle")
Copy link
Contributor

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 XCTFailed by the caller, rather than stopping all of the tests?

Copy link
Member Author

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.

Copy link
Member Author

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.

Copy link
Member Author

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

Copy link
Contributor

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().

Copy link
Member Author

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.

Copy link
Contributor

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.

Copy link
Contributor

@millenomi millenomi Jul 2, 2019

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.

@compnerd
Copy link
Member Author

ping?

@millenomi millenomi merged commit c7ad5a3 into swiftlang:master Jul 2, 2019
@compnerd compnerd deleted the illiteracy branch July 2, 2019 22:13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants