summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_import.py
diff options
context:
space:
mode:
authorCharles-François Natali <neologix@free.fr>2011-10-04 17:17:26 (GMT)
committerCharles-François Natali <neologix@free.fr>2011-10-04 17:17:26 (GMT)
commita13b1faa788f95f063a2190eb63d81ee8565182d (patch)
treec13f527f655c70526336e5802156a538a15de84f /Lib/test/test_import.py
parent36225c6a9925b962e5035a1ceae4025fb5b80f08 (diff)
downloadcpython-a13b1faa788f95f063a2190eb63d81ee8565182d.zip
cpython-a13b1faa788f95f063a2190eb63d81ee8565182d.tar.gz
cpython-a13b1faa788f95f063a2190eb63d81ee8565182d.tar.bz2
Issue #11956: Skip test_import.test_unwritable_directory on FreeBSD when run as
root (directory permissions are ignored).
Diffstat (limited to 'Lib/test/test_import.py')
-rw-r--r--Lib/test/test_import.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/test/test_import.py b/Lib/test/test_import.py
index 98b7351..42ec084 100644
--- a/Lib/test/test_import.py
+++ b/Lib/test/test_import.py
@@ -4,6 +4,7 @@ from importlib.test.import_ import test_relative_imports
from importlib.test.import_ import util as importlib_util
import marshal
import os
+import platform
import py_compile
import random
import stat
@@ -546,6 +547,8 @@ class PycacheTests(unittest.TestCase):
@unittest.skipUnless(os.name == 'posix',
"test meaningful only on posix systems")
+ @unittest.skipIf(platform.system() == 'FreeBSD' and os.geteuid() == 0,
+ "due to non-standard filesystem permission semantics (issue #11956)")
def test_unwritable_directory(self):
# When the umask causes the new __pycache__ directory to be
# unwritable, the import still succeeds but no .pyc file is written.