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
4140fb52
Commit
4140fb52
authored
Apr 21, 2013
by
R David Murray
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#17065: Use process-unique key for winreg test.
Patch by Jeremy Kloth.
parent
637c7c47
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
2 deletions
+8
-2
Lib/test/test_winreg.py
Lib/test/test_winreg.py
+5
-2
Misc/NEWS
Misc/NEWS
+3
-0
No files found.
Lib/test/test_winreg.py
View file @
4140fb52
...
@@ -28,9 +28,12 @@ WIN64_MACHINE = True if machine() == "AMD64" else False
...
@@ -28,9 +28,12 @@ WIN64_MACHINE = True if machine() == "AMD64" else False
# tests are only valid up until 6.1
# tests are only valid up until 6.1
HAS_REFLECTION
=
True
if
WIN_VER
<
(
6
,
1
)
else
False
HAS_REFLECTION
=
True
if
WIN_VER
<
(
6
,
1
)
else
False
test_key_name
=
"SOFTWARE
\
\
Python Registry Test Key - Delete Me"
# Use a per-process key to prevent concurrent test runs (buildbot!) from
# stomping on each other.
test_key_base
=
"Python Test Key [%d] - Delete Me"
%
(
os
.
getpid
(),)
test_key_name
=
"SOFTWARE
\
\
"
+
test_key_base
# On OS'es that support reflection we should test with a reflected key
# On OS'es that support reflection we should test with a reflected key
test_reflect_key_name
=
"SOFTWARE
\
\
Classes
\
\
Python Test Key - Delete Me"
test_reflect_key_name
=
"SOFTWARE
\
\
Classes
\
\
"
+
test_key_base
test_data
=
[
test_data
=
[
(
"Int Value"
,
45
,
REG_DWORD
),
(
"Int Value"
,
45
,
REG_DWORD
),
...
...
Misc/NEWS
View file @
4140fb52
...
@@ -124,6 +124,9 @@ IDLE
...
@@ -124,6 +124,9 @@ IDLE
Tests
Tests
-----
-----
-
Issue
#
17065
:
Use
process
-
unique
key
for
winreg
tests
to
avoid
failures
if
test
is
run
multiple
times
in
parallel
(
eg
:
on
a
buildbot
host
).
-
Issue
#
12820
:
add
tests
for
the
xml
.
dom
.
minicompat
module
.
-
Issue
#
12820
:
add
tests
for
the
xml
.
dom
.
minicompat
module
.
Patch
by
John
Chandler
and
Phil
Connell
.
Patch
by
John
Chandler
and
Phil
Connell
.
...
...
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