diff options
author | Jeff Quast <jquast@io.com> | 2014-12-19 18:46:35 -0800 |
---|---|---|
committer | Jeff Quast <jquast@io.com> | 2014-12-19 18:46:35 -0800 |
commit | 4242c4605a1de8d3c282e6a5a0b16977b34789ec (patch) | |
tree | 72da0d86952d746423b3914d0af9b21d71f33042 /tests | |
parent | 194e8c287494b52f2294adadc56028d10f49e914 (diff) | |
download | pexpect-git-4242c4605a1de8d3c282e6a5a0b16977b34789ec.tar.gz |
Comment on the cause for 'group executable' == no
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_which.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/test_which.py b/tests/test_which.py index ec9fbb8..bda3333 100644 --- a/tests/test_which.py +++ b/tests/test_which.py @@ -188,6 +188,10 @@ class TestCaseWhich(PexpectTestCase.PexpectTestCase): shutil.copy(bin_echo, bin_path) isroot = os.getuid() == 0 for should_match, mode in ( + # note that although the file may have matching 'group' or + # 'other' executable permissions, it is *not* executable + # because the current uid is the owner of the file -- which + # takes precedence (False, 0o000), # ----------, no (isroot, 0o001), # ---------x, no (isroot, 0o010), # ------x---, no |