[Python-checkins] cpython (3.2): Port remaining test fixes, and fix test_importlib too.

antoine.pitrou python-checkins at python.org
Wed Jan 25 03:03:43 CET 2012


http://hg.python.org/cpython/rev/37ac757a9145
changeset:   74603:37ac757a9145
branch:      3.2
user:        Antoine Pitrou <solipsis at pitrou.net>
date:        Wed Jan 25 03:00:57 2012 +0100
summary:
  Port remaining test fixes, and fix test_importlib too.

files:
  Lib/importlib/test/source/test_file_loader.py |  10 +++++++++-
  Lib/test/test_import.py                       |   5 +++++
  2 files changed, 14 insertions(+), 1 deletions(-)


diff --git a/Lib/importlib/test/source/test_file_loader.py b/Lib/importlib/test/source/test_file_loader.py
--- a/Lib/importlib/test/source/test_file_loader.py
+++ b/Lib/importlib/test/source/test_file_loader.py
@@ -4,6 +4,7 @@
 from .. import util
 from . import util as source_util
 
+import errno
 import imp
 import marshal
 import os
@@ -136,7 +137,14 @@
             compiled = imp.cache_from_source(source)
             with open(source, 'w') as f:
                 f.write("x = 5")
-            os.utime(source, (2 ** 33, 2 ** 33))
+            try:
+                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))
             loader = _bootstrap._SourceFileLoader('_temp', mapping['_temp'])
             mod = loader.load_module('_temp')
             # Sanity checks.
diff --git a/Lib/test/test_import.py b/Lib/test/test_import.py
--- a/Lib/test/test_import.py
+++ b/Lib/test/test_import.py
@@ -11,6 +11,7 @@
 import sys
 import unittest
 import textwrap
+import errno
 
 from test.support import (
     EnvironmentVarGuard, TESTFN, check_warnings, forget, is_jython,
@@ -323,6 +324,10 @@
                 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)

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list