[pypy-commit] pypy default: I disabled the CLI tests after I found out that the linux buildbot
ctismer
noreply at buildbot.pypy.org
Sun Mar 18 01:15:06 CET 2012
Author: Christian Tismer <tismer at stackless.com>
Branch:
Changeset: r53766:f623fa804db5
Date: 2012-03-18 01:09 +0100
http://bitbucket.org/pypy/pypy/changeset/f623fa804db5/
Log: I disabled the CLI tests after I found out that the linux buildbot
don's have the mono framework installed. On windows, it always is
there and therefore very boring to get hundreds of errors.
diff --git a/pypy/rpython/ootypesystem/ootype.py b/pypy/rpython/ootypesystem/ootype.py
--- a/pypy/rpython/ootypesystem/ootype.py
+++ b/pypy/rpython/ootypesystem/ootype.py
@@ -1295,6 +1295,8 @@
for meth in self.overloadings:
ARGS = meth._TYPE.ARGS
if ARGS in signatures:
+ # XXX Conflict on 'Signed' vs 'SignedLongLong' on win64.
+ # XXX note that this partially works if this error is ignored.
raise TypeError, 'Bad overloading'
signatures.add(ARGS)
diff --git a/pypy/translator/cli/sdk.py b/pypy/translator/cli/sdk.py
--- a/pypy/translator/cli/sdk.py
+++ b/pypy/translator/cli/sdk.py
@@ -103,6 +103,11 @@
mono_bin = find_mono_on_windows()
if mono_bin is not None:
SDK.ILASM = os.path.join(mono_bin, 'ilasm2.bat')
+ # XXX the failing tests are boring, and the SDK is usually installed
+ # on windows. I do not care right now, because the Linux buildbots
+ # don't test this at all...
+ if platform.architecture()[0] == '64bit':
+ py.test.skip('mono on 64bit is not well enough supported')
else:
SDK = MonoSDK
return SDK
More information about the pypy-commit
mailing list