[pypy-svn] r41234 - pypy/dist/pypy/lib/app_test

mwh at codespeak.net mwh at codespeak.net
Sat Mar 24 15:24:04 CET 2007


Author: mwh
Date: Sat Mar 24 15:24:03 2007
New Revision: 41234

Modified:
   pypy/dist/pypy/lib/app_test/test_structseq.py
Log:
add a skipped, failing test that explains why cpython's test_os fails on
pypy-c. shouldn't be that hard to fix, but it's work and too close to the
release.


Modified: pypy/dist/pypy/lib/app_test/test_structseq.py
==============================================================================
--- pypy/dist/pypy/lib/app_test/test_structseq.py	(original)
+++ pypy/dist/pypy/lib/app_test/test_structseq.py	Sat Mar 24 15:24:03 2007
@@ -73,3 +73,8 @@
     py.test.raises((TypeError, AttributeError), "x.st_mode = 1")
     py.test.raises((TypeError, AttributeError), "x.st_mtime = 1")
     py.test.raises((TypeError, AttributeError), "x.st_rdev = 1")
+
+def test_no_extra_assignments():
+    x = mydata(range(100, 113))
+    py.test.skip("not working yet")
+    py.test.raises((TypeError, AttributeError), "x.some_random_attribute = 1")



More information about the Pypy-commit mailing list