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
5ef60185
Commit
5ef60185
authored
Jul 19, 2004
by
Hye-Shik Chang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
test_codecmaps_hk is also expected to be skipped when a mapping file
isn't available. (Spotted by Raymond Hettinger)
parent
76aa2eff
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
Lib/test/regrtest.py
Lib/test/regrtest.py
+2
-1
No files found.
Lib/test/regrtest.py
View file @
5ef60185
...
...
@@ -988,6 +988,7 @@ class _ExpectedSkips:
from
test
import
test_timeout
from
test
import
test_codecmaps_cn
,
test_codecmaps_jp
from
test
import
test_codecmaps_kr
,
test_codecmaps_tw
from
test
import
test_codecmaps_hk
self
.
valid
=
False
if
sys
.
platform
in
_expectations
:
...
...
@@ -1006,7 +1007,7 @@ class _ExpectedSkips:
if
test_timeout
.
skip_expected
:
self
.
expected
.
add
(
'test_timeout'
)
for
cc
in
(
'cn'
,
'jp'
,
'kr'
,
'tw'
):
for
cc
in
(
'cn'
,
'jp'
,
'kr'
,
'tw'
,
'hk'
):
if
eval
(
'test_codecmaps_'
+
cc
).
skip_expected
:
self
.
expected
.
add
(
'test_codecmaps_'
+
cc
)
...
...
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