summaryrefslogtreecommitdiff
path: root/test cases/common/190 install_mode/test.json
AgeCommit message (Collapse)Author
2022-08-23install modes should not apply sticky bit to filesEli Schwartz
This is generally a bad idea, e.g. it causes OSError on freebsd. It also gets ignored by solaris and thus causes unittest failures. The proper solution is to simply reject any attempt to set this, and log a warning. The install_emptydir function does apply the mode as well, and since it is a directory it actually does something. This is the only place where we don't reset the mode. Although install_subdir also installs directories, and in theory it could set the mode as well, that would be a new feature. Also it doesn't provide much granularity and has mixed semantics with files. Better to let people use install_emptydir + install_subdir. Fixes #5902
2021-04-26Condense test directory names.Jussi Pakkanen