diff options
author | Christian Heimes <christian@cheimes.de> | 2013-10-25 07:21:51 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2013-10-25 07:21:51 (GMT) |
commit | 349b04e902ff90b8ece10396370ed5be9c888a0a (patch) | |
tree | 33a67284de73f041743ceafea4db78625f653c4b | |
parent | c4a4b346a6caa46a5df0c9a7adf5c52fe3008d73 (diff) | |
download | cpython-349b04e902ff90b8ece10396370ed5be9c888a0a.zip cpython-349b04e902ff90b8ece10396370ed5be9c888a0a.tar.gz cpython-349b04e902ff90b8ece10396370ed5be9c888a0a.tar.bz2 |
Issue 19384: Fix test_py_compile for root user, patch by Claudiu Popa.
-rw-r--r-- | Lib/test/test_py_compile.py | 3 | ||||
-rw-r--r-- | Misc/NEWS | 5 |
2 files changed, 8 insertions, 0 deletions
diff --git a/Lib/test/test_py_compile.py b/Lib/test/test_py_compile.py index 2ad9c3a..154c08a 100644 --- a/Lib/test/test_py_compile.py +++ b/Lib/test/test_py_compile.py @@ -3,6 +3,7 @@ import os import py_compile import shutil import stat +import sys import tempfile import unittest @@ -75,6 +76,8 @@ class PyCompileTests(unittest.TestCase): self.assertTrue(os.path.exists(self.pyc_path)) self.assertFalse(os.path.exists(self.cache_path)) + @unittest.skipIf(hasattr(os, 'geteuid') and os.geteuid() == 0, + 'non-root user required') @unittest.skipIf(os.name == 'nt', 'cannot control directory permissions on Windows') def test_exceptions_propagate(self): @@ -74,6 +74,11 @@ Library - Issue #17087: Improved the repr for regular expression match objects. +Tests +----- + +- Issue 19384: Fix test_py_compile for root user, patch by Claudiu Popa. + Build ----- |