Author: Armin Rigo <[email protected]>
Branch:
Changeset: r70658:3a448de2c18d
Date: 2014-04-16 16:02 +0200
http://bitbucket.org/pypy/pypy/changeset/3a448de2c18d/
Log: Fix the skipping condition (it was "skip always" by mistake)
diff --git a/rpython/rlib/test/test_rlocale.py
b/rpython/rlib/test/test_rlocale.py
--- a/rpython/rlib/test/test_rlocale.py
+++ b/rpython/rlib/test/test_rlocale.py
@@ -37,7 +37,7 @@
assert isinstance(grouping, str)
def test_libintl():
- if sys.platform != "darwin" or not sys.platform.startswith("linux"):
+ if sys.platform != "darwin" and not sys.platform.startswith("linux"):
py.test.skip("there is (maybe) no libintl here")
_gettext = external('gettext', [rffi.CCHARP], rffi.CCHARP)
res = _gettext("1234")
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit