diff options
author | 2009-11-08 16:54:19 +0000 | |
---|---|---|
committer | 2009-11-08 16:54:19 +0000 | |
commit | e9ac56a6018f2fb1b8cddc464d63c2bac9e60aa0 (patch) | |
tree | 1ab569db0c52039aad5e0e6ab24fc3e4011daa62 /dev-python/setuptools/files | |
parent | Version bump to 1.1.2 . Remove old ebuild (diff) | |
download | historical-e9ac56a6018f2fb1b8cddc464d63c2bac9e60aa0.tar.gz historical-e9ac56a6018f2fb1b8cddc464d63c2bac9e60aa0.tar.bz2 historical-e9ac56a6018f2fb1b8cddc464d63c2bac9e60aa0.zip |
Skip test failing with C locale (bug #287439).
Package-Manager: portage-14804-svn/cvs/Linux x86_64
Diffstat (limited to 'dev-python/setuptools/files')
-rw-r--r-- | dev-python/setuptools/files/distribute-0.6.8-C_locale_tests.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/dev-python/setuptools/files/distribute-0.6.8-C_locale_tests.patch b/dev-python/setuptools/files/distribute-0.6.8-C_locale_tests.patch new file mode 100644 index 000000000000..2580e355486d --- /dev/null +++ b/dev-python/setuptools/files/distribute-0.6.8-C_locale_tests.patch @@ -0,0 +1,11 @@ +--- setuptools/tests/test_resources.py ++++ setuptools/tests/test_resources.py +@@ -536,6 +536,8 @@ + '#!%s -x\n' % self.non_ascii_exe) + + def test_get_script_header_jython_workaround(self): ++ if os.environ.get("LC_ALL") == "C": ++ return + platform = sys.platform + sys.platform = 'java1.5.0_13' + stdout = sys.stdout |