This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author mallayya
Recipients mallayya, theller
Date 2010-01-12.08:50:53
SpamBayes Score 0.0009092452
Marked as misclassified No
Message-id <1263286268.13.0.50229511271.issue7657@psf.upfronthosting.co.za>
In-reply-to
Content
These failures are specific to xlc compiler
In xlc signed bit fields will be mapped to unsigned by default as opposed to gcc where the value stored in the bit field is of type declared. 
so the the value returned by "func(byref(b), name)"  positive in some cases as it expected to be of type declared.

Their  is an xlc compiler option  "-qbitfields=signed" to make the bit fields of type signed.
After this all the ctypes test cases got passed.
History
Date User Action Args
2010-01-12 08:51:08mallayyasetrecipients: + mallayya, theller
2010-01-12 08:51:08mallayyasetmessageid: <1263286268.13.0.50229511271.issue7657@psf.upfronthosting.co.za>
2010-01-12 08:50:54mallayyalinkissue7657 messages
2010-01-12 08:50:53mallayyacreate