Issue 9832: test_unicodedata fails on MacOSX 10.6 (original) (raw)

Created on 2010-09-11 09:47 by donmez, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (6)
msg116085 - (view) Author: Ismail Donmez (donmez) * Date: 2010-09-11 09:47
Using py3k branch revision 84707, on Mac OSX 10.6, case-sensitive HFS+ filesystem. ====================================================================== FAIL: test_ucd_510 (test.test_unicodedata.UnicodeMiscTest) ---------------------------------------------------------------------- Traceback (most recent call last): File "/Users/cartman/Sources/py3k/Lib/test/test_unicodedata.py", line 266, in test_ucd_510 self.assertTrue("\u1d79".upper()=='\ua77d') AssertionError: False is not True ====================================================================== FAIL: test_method_checksum (test.test_unicodedata.UnicodeMethodsTest) ---------------------------------------------------------------------- Traceback (most recent call last): File "/Users/cartman/Sources/py3k/Lib/test/test_unicodedata.py", line 67, in test_method_checksum self.assertEqual(result, self.expectedchecksum) AssertionError: '72252619bcc5d47da59734c1a2bc8f8dd34e14f8' != '4504dffd035baea02c5b9de82bebc3d65e0e0baf' - 72252619bcc5d47da59734c1a2bc8f8dd34e14f8 + 4504dffd035baea02c5b9de82bebc3d65e0e0baf
msg116090 - (view) Author: Florent Xicluna (flox) * (Python committer) Date: 2010-09-11 10:50
Did you run `make distclean` before?
msg116091 - (view) Author: Ismail Donmez (donmez) * Date: 2010-09-11 10:52
Yes I did make distclean before building (to cleanup old build files).
msg116099 - (view) Author: Ismail Donmez (donmez) * Date: 2010-09-11 15:08
Btw I configured with; ./configure --with-wctype-functions --with-fpectl --with-wide-unicode --with-computed-gotos --enable-ipv6 --with-universal-archs=64-bit MACOSX_DEPLOYMENT_TARGET=10.6
msg116124 - (view) Author: Florent Xicluna (flox) * (Python committer) Date: 2010-09-11 21:59
According to issue #9210, "--with-wctype-functions" is pending removal. Could you retry without this switch?
msg116156 - (view) Author: Ned Deily (ned.deily) * (Python committer) Date: 2010-09-12 08:58
On a similar systems (10.6, HFS+ case-sensitive), I was able to reproduce this failure when using those non-standard ./configure params. The test does not fail after removing --with-wctype-functions. As noted, --with-wctype-functions is planned to be removed before 3.2 releases. The solution is to not use it.
History
Date User Action Args
2022-04-11 14:57:06 admin set github: 54041
2010-09-12 08:58:51 ned.deily set stage: test needed -> resolved
2010-09-12 08:58:16 ned.deily set status: open -> closedresolution: wont fixmessages: +
2010-09-12 04:17:37 eric.araujo set nosy: + eric.araujo
2010-09-11 21:59:30 flox set nosy: + lemburg, amaury.forgeotdarcsuperseder: remove --with-wctype-functions configure optionmessages: +
2010-09-11 15🔞52 flox set nosy: + ned.deily, michael.foord
2010-09-11 15:08:44 donmez set messages: +
2010-09-11 10:52:00 donmez set messages: +
2010-09-11 10:50:24 flox set nosy: + ronaldoussoren, floxmessages: + assignee: ronaldoussorencomponents: + macOSstage: test needed
2010-09-11 09:47:17 donmez create