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
6f5a2b52
Commit
6f5a2b52
authored
Jun 19, 2008
by
Benjamin Peterson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
skip test_macostools when UCS4 is enabled
parent
9b69ed9d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
0 deletions
+6
-0
Lib/test/regrtest.py
Lib/test/regrtest.py
+3
-0
Lib/test/test_macostools.py
Lib/test/test_macostools.py
+3
-0
No files found.
Lib/test/regrtest.py
View file @
6f5a2b52
...
...
@@ -1133,6 +1133,9 @@ class _ExpectedSkips:
"test_applesingle"
]
for
skip
in
MAC_ONLY
:
self
.
expected
.
add
(
skip
)
elif
len
(
u'
\
0
'
.
encode
(
'unicode-internal'
))
==
4
:
self
.
expected
.
add
(
"test_macostools"
)
if
sys
.
platform
!=
"win32"
:
# test_sqlite is only reliable on Windows where the library
...
...
Lib/test/test_macostools.py
View file @
6f5a2b52
...
...
@@ -91,6 +91,9 @@ class TestMacostools(unittest.TestCase):
def
test_main
():
# Skip on wide unicode
if
len
(
u'
\
0
'
.
encode
(
'unicode-internal'
))
==
4
:
raise
test_support
.
TestSkipped
(
"test_macostools is broken in USC4"
)
test_support
.
run_unittest
(
TestMacostools
)
...
...
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