Author: Antonio Cuni <[email protected]>
Branch: ffistruct
Changeset: r55125:809248c4489d
Date: 2012-05-17 16:09 +0200
http://bitbucket.org/pypy/pypy/changeset/809248c4489d/

Log:    skip these tests on cli/jvm

diff --git a/pypy/translator/cli/test/test_builtin.py 
b/pypy/translator/cli/test/test_builtin.py
--- a/pypy/translator/cli/test/test_builtin.py
+++ b/pypy/translator/cli/test/test_builtin.py
@@ -16,7 +16,10 @@
     test_os_isdir = skip_os
     test_os_dup_oo = skip_os
     test_os_access = skip_os
-        
+
+    def test_longlongmask(self):
+        py.test.skip("fix me")
+    
     def test_builtin_math_frexp(self):
         self._skip_powerpc("Mono math floating point problem")
         BaseTestBuiltin.test_builtin_math_frexp(self)
diff --git a/pypy/translator/jvm/test/test_builtin.py 
b/pypy/translator/jvm/test/test_builtin.py
--- a/pypy/translator/jvm/test/test_builtin.py
+++ b/pypy/translator/jvm/test/test_builtin.py
@@ -47,6 +47,9 @@
         res = self.interpret(fn, [])
         assert stat.S_ISREG(res)
 
+    def test_longlongmask(self):
+        py.test.skip("fix me")
+
 class TestJvmTime(JvmTest, BaseTestTime):
 
     pass
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to