Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
2f24d98d
Commit
2f24d98d
authored
Mar 02, 2012
by
Vinay Sajip
Browse files
Options
Browse Files
Download
Plain Diff
Closes #14158: merged test file resilience fix from 3.2.
parents
be52d507
f9596181
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
30 additions
and
10 deletions
+30
-10
Lib/test/regrtest.py
Lib/test/regrtest.py
+19
-4
Lib/test/test_base64.py
Lib/test/test_base64.py
+5
-0
Lib/test/test_mailbox.py
Lib/test/test_mailbox.py
+6
-6
No files found.
Lib/test/regrtest.py
View file @
2f24d98d
...
...
@@ -970,6 +970,7 @@ class saved_test_environment:
'multiprocessing.process._dangling',
'sysconfig._CONFIG_VARS', 'sysconfig._SCHEMES',
'packaging.command._COMMANDS', 'packaging.database_caches',
'support.TESTFN',
)
def get_sys_argv(self):
...
...
@@ -1163,6 +1164,20 @@ class saved_test_environment:
sysconfig._SCHEMES._sections.clear()
sysconfig._SCHEMES._sections.update(saved[2])
def get_support_TESTFN(self):
if os.path.isfile(support.TESTFN):
result = 'f'
elif os.path.isdir(support.TESTFN):
result = 'd'
else:
result = None
return result
def restore_support_TESTFN(self, saved_value):
if saved_value is None:
if os.path.isfile(support.TESTFN):
os.unlink(support.TESTFN)
elif os.path.isdir(support.TESTFN):
shutil.rmtree(support.TESTFN)
def resource_info(self):
for name in self.resources:
...
...
Lib/test/test_base64.py
View file @
2f24d98d
...
...
@@ -2,6 +2,7 @@ import unittest
from
test
import
support
import
base64
import
binascii
import
os
import
sys
import
subprocess
...
...
@@ -274,6 +275,10 @@ class BaseXYTestCase(unittest.TestCase):
class
TestMain
(
unittest
.
TestCase
):
def
tearDown
(
self
):
if
os
.
path
.
exists
(
support
.
TESTFN
):
os
.
unlink
(
support
.
TESTFN
)
def
get_output
(
self
,
*
args
,
**
options
):
args
=
(
sys
.
executable
,
'-m'
,
'base64'
)
+
args
return
subprocess
.
check_output
(
args
,
**
options
)
...
...
Lib/test/test_mailbox.py
View file @
2f24d98d
...
...
@@ -7,6 +7,7 @@ import email
import
email.message
import
re
import
io
import
shutil
import
tempfile
from
test
import
support
import
unittest
...
...
@@ -38,12 +39,7 @@ class TestBase(unittest.TestCase):
def
_delete_recursively
(
self
,
target
):
# Delete a file or delete a directory recursively
if
os
.
path
.
isdir
(
target
):
for
path
,
dirs
,
files
in
os
.
walk
(
target
,
topdown
=
False
):
for
name
in
files
:
os
.
remove
(
os
.
path
.
join
(
path
,
name
))
for
name
in
dirs
:
os
.
rmdir
(
os
.
path
.
join
(
path
,
name
))
os
.
rmdir
(
target
)
shutil
.
rmtree
(
target
)
elif
os
.
path
.
exists
(
target
):
os
.
remove
(
target
)
...
...
@@ -2028,6 +2024,10 @@ class MaildirTestCase(unittest.TestCase):
def
setUp
(
self
):
# create a new maildir mailbox to work with:
self
.
_dir
=
support
.
TESTFN
if
os
.
path
.
isdir
(
self
.
_dir
):
shutil
.
rmtree
(
self
.
_dir
)
elif
os
.
path
.
isfile
(
self
.
_dir
):
os
.
unlink
(
self
.
_dir
)
os
.
mkdir
(
self
.
_dir
)
os
.
mkdir
(
os
.
path
.
join
(
self
.
_dir
,
"cur"
))
os
.
mkdir
(
os
.
path
.
join
(
self
.
_dir
,
"tmp"
))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment