-
-
Notifications
You must be signed in to change notification settings - Fork 156
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
Possible problem with tests running in a setgid dir #103
Comments
PR? |
phated
added a commit
that referenced
this issue
Dec 16, 2015
Merged
Merged
phated
added a commit
that referenced
this issue
Nov 27, 2017
phated
added a commit
that referenced
this issue
Nov 27, 2017
phated
added a commit
that referenced
this issue
Nov 27, 2017
phated
added a commit
that referenced
this issue
Nov 27, 2017
phated
added a commit
that referenced
this issue
Nov 27, 2017
phated
added a commit
that referenced
this issue
Nov 27, 2017
phated
added a commit
that referenced
this issue
Nov 27, 2017
phated
added a commit
that referenced
this issue
Nov 27, 2017
phated
added a commit
that referenced
this issue
Nov 27, 2017
phated
added a commit
that referenced
this issue
Nov 27, 2017
phated
added a commit
that referenced
this issue
Nov 27, 2017
phated
added a commit
that referenced
this issue
Nov 27, 2017
phated
added a commit
that referenced
this issue
Nov 27, 2017
phated
added a commit
that referenced
this issue
Nov 27, 2017
phated
added a commit
that referenced
this issue
Nov 28, 2017
phated
added a commit
that referenced
this issue
Nov 28, 2017
phated
added a commit
that referenced
this issue
Nov 28, 2017
phated
added a commit
that referenced
this issue
Nov 28, 2017
phated
added a commit
that referenced
this issue
Nov 28, 2017
phated
added a commit
that referenced
this issue
Nov 28, 2017
phated
added a commit
that referenced
this issue
Nov 28, 2017
phated
added a commit
that referenced
this issue
Nov 28, 2017
phated
added a commit
that referenced
this issue
Nov 28, 2017
phated
added a commit
that referenced
this issue
Nov 28, 2017
phated
added a commit
that referenced
this issue
Nov 28, 2017
phated
added a commit
that referenced
this issue
Nov 28, 2017
phated
added a commit
that referenced
this issue
Nov 28, 2017
phated
added a commit
that referenced
this issue
Nov 28, 2017
phated
added a commit
that referenced
this issue
Nov 28, 2017
phated
added a commit
that referenced
this issue
Nov 28, 2017
phated
added a commit
that referenced
this issue
Nov 28, 2017
phated
added a commit
that referenced
this issue
Nov 28, 2017
phated
added a commit
that referenced
this issue
Nov 28, 2017
phated
added a commit
that referenced
this issue
Nov 28, 2017
phated
added a commit
that referenced
this issue
Nov 28, 2017
phated
added a commit
that referenced
this issue
Nov 28, 2017
phated
added a commit
that referenced
this issue
Nov 28, 2017
phated
added a commit
that referenced
this issue
Nov 28, 2017
phated
added a commit
that referenced
this issue
Nov 28, 2017
phated
added a commit
that referenced
this issue
Nov 28, 2017
phated
added a commit
that referenced
this issue
Nov 28, 2017
phated
added a commit
that referenced
this issue
Nov 28, 2017
phated
added a commit
that referenced
this issue
Nov 28, 2017
phated
added a commit
that referenced
this issue
Nov 28, 2017
phated
added a commit
that referenced
this issue
Nov 28, 2017
phated
added a commit
that referenced
this issue
Nov 28, 2017
phated
added a commit
that referenced
this issue
Nov 28, 2017
phated
added a commit
that referenced
this issue
Nov 28, 2017
phated
added a commit
that referenced
this issue
Nov 28, 2017
phated
added a commit
that referenced
this issue
Dec 5, 2017
phated
added a commit
that referenced
this issue
Dec 5, 2017
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
These tests fail on my system (Linux/Ubuntu):
After some debugging I figured out that all three tests fail due to the project directory (and its subdirectories) permissions which has
setgid
bit set.To reproduce execute this command:
and then run the tests.
Whys
Let's look at the first failing test
should write directories to the right folder
.The expected mode of a dir is:
and the failing line is:
and my run-time values were:
— i.e. it didn't expect an extra bit set by the filesystem.
Ideas? Can't we just make
realMode()
more loosing like this:The text was updated successfully, but these errors were encountered: