[pypy-svn] r11547 - pypy/dist/lib-python-2.3.4/test/result

arigo at codespeak.net arigo at codespeak.net
Wed Apr 27 21:18:25 CEST 2005


Author: arigo
Date: Wed Apr 27 21:18:24 2005
New Revision: 11547

Modified:
   pypy/dist/lib-python-2.3.4/test/result/quickreport.py
Log:
Skipping more modules...


Modified: pypy/dist/lib-python-2.3.4/test/result/quickreport.py
==============================================================================
--- pypy/dist/lib-python-2.3.4/test/result/quickreport.py	(original)
+++ pypy/dist/lib-python-2.3.4/test/result/quickreport.py	Wed Apr 27 21:18:24 2005
@@ -30,7 +30,7 @@
 r_timeout = re.compile(r"""==========================timeout==========================
 """)
 
-r_importerror = re.compile(r"ImportError: (\w+)")
+r_importerror = re.compile(r"ImportError: (.+)")
 
 # Linux list below.  May need to add a few ones for Windows...
 IGNORE_MODULES = """
@@ -42,15 +42,18 @@
     cmath          grp            ossaudiodev  sha       _weakref
     cPickle        _hotshot       parser       _socket   xreadlines
     crypt          imageop        pcre         _ssl      zlib
-    cStringIO      itertools      pwd          strop
-    _csv           linuxaudiodev  pyexpat      struct
-    _curses_panel  _locale        _random      syslog
-    _curses        math           readline     termios
+    cStringIO      itertools      pwd          strop     _winreg
+    _csv           linuxaudiodev  pyexpat      struct    winsound
+    _curses_panel  _locale        _random      syslog    aetools
+    _curses        math           readline     termios   sunaudiodev
 
     thread
+    signal
 
 """.split()
 
+IGNORE_MODULES.append("no XML parsers available")
+IGNORE_MODULES.append("test_support must be imported from the test package")
 
 class Result:
     pts = '?'
@@ -81,6 +84,8 @@
                     self.pts = ''   # doesn't count in our total
             elif self.finalline.startswith('TestSkipped: '):
                 self.pts = ''
+            elif self.finalline == 'skipping curses':
+                self.pts = ''
         else:
             self.finalline = 'TIME OUT'
             self.pts = 'T/O'



More information about the Pypy-commit mailing list