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

Issue #6982: kill mutation survival at Main.listFiles() over canRead() #6989

Merged
merged 1 commit into from
Aug 18, 2019
Merged

Issue #6982: kill mutation survival at Main.listFiles() over canRead() #6989

merged 1 commit into from
Aug 18, 2019

Conversation

romani
Copy link
Member

@romani romani commented Aug 18, 2019

Issue #6982

it will not work on Windows, but our pitests are so linux dependent, so I think it is ok.
creation of file that user does not have access , will result in pollution on users filesystem (as we will not be able to remove it), it is not good.

image

image

@strkkk
Copy link
Member

strkkk commented Aug 18, 2019

creation of file that user does not have access , will result in pollution on users filesystem (as we will not be able to remove it)

May be just create a temp file and remove read access?
Something like:

Path file = Files.createTempFile("", "");
file.toFile().setReadable(false);

@rnveach
Copy link
Member

rnveach commented Aug 18, 2019

We can come back to Windows support later. As long as CI is happy, I am happy. Even for my own purposes, I still run everything through a custom Linux VM.

@romani
Copy link
Member Author

romani commented Aug 18, 2019

I will try #6991

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