mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
Issue 19384: Fix test_py_compile for root user, patch by Claudiu Popa.
This commit is contained in:
parent
c4a4b346a6
commit
349b04e902
2 changed files with 8 additions and 0 deletions
|
@ -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
|
||||
-----
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue