From 349b04e902ff90b8ece10396370ed5be9c888a0a Mon Sep 17 00:00:00 2001 From: Christian Heimes Date: Fri, 25 Oct 2013 09:21:51 +0200 Subject: Issue 19384: Fix test_py_compile for root user, patch by Claudiu Popa. --- Lib/test/test_py_compile.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'Lib/test/test_py_compile.py') diff --git a/Lib/test/test_py_compile.py b/Lib/test/test_py_compile.py index 2ad9c3a000..154c08a6a2 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): -- cgit v1.2.1