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
5e57571f
Commit
5e57571f
authored
Jan 25, 2012
by
Antoine Pitrou
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Skip test failure under OpenIndiana
parent
d8b90e1d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
Lib/test/test_import.py
Lib/test/test_import.py
+5
-0
No files found.
Lib/test/test_import.py
View file @
5e57571f
import
errno
import
imp
import
marshal
import
os
...
...
@@ -290,6 +291,10 @@ class ImportTests(unittest.TestCase):
os
.
utime
(
source
,
(
2
**
33
,
2
**
33
))
except
OverflowError
:
self
.
skipTest
(
"cannot set modification time to large integer"
)
except
OSError
as
e
:
if
e
.
errno
!=
getattr
(
errno
,
'EOVERFLOW'
,
None
):
raise
self
.
skipTest
(
"cannot set modification time to large integer ({})"
.
format
(
e
))
__import__
(
TESTFN
)
# The pyc file was created.
os
.
stat
(
compiled
)
...
...
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