[pypy-svn] r16248 - pypy/dist/lib-python

ale at codespeak.net ale at codespeak.net
Tue Aug 23 12:17:46 CEST 2005


Author: ale
Date: Tue Aug 23 12:17:40 2005
New Revision: 16248

Modified:
   pypy/dist/lib-python/failure_list.txt
Log:
update test_exceptions test_syntax

Modified: pypy/dist/lib-python/failure_list.txt
==============================================================================
--- pypy/dist/lib-python/failure_list.txt	(original)
+++ pypy/dist/lib-python/failure_list.txt	Tue Aug 23 12:17:40 2005
@@ -1,6 +1,20 @@
 test_pprint 
     fails because  "dict.__repr__ is dict.__repr__" equals False
 
+test_syntax fails because "del f()" produces SyntaxError with message = 
+    "can't assign to function call" instead of "can't delete function call". 
+    The test is for "delete" to be in the message
+
+test_exceptions fails with exception message mismatches:
+    'continue' not allowed inside 'finally' clause (<fragment>, 5)
+    instead oof 'continue' not supported inside 'finally' clause
+    and
+    'continue' outside loop (<fragment>, 2)
+    instead of 'continue' not properly in loop
+    and
+    'continue' outside loop (<fragment>, 1)
+    instead of 'continue' not properly in loop
+
 test_import 
     fails because os.open is case insensitive (at least on Mac os X)
 



More information about the Pypy-commit mailing list