On 4 Apr 2011, at 15:56, Wolfgang Lux wrote: > --- Running tests in base/NSNumber --- > > base/NSNumber/test00.m: > Failed test: test00.m:111 ... NSDecimalNumber charValue works > > The latter of these fails due to a mismatch between signed and unsigned char. > The test uses > (char)200 == [val1 charValue] > The result of charValue is signed char, but char is unsigned by default on > powerpc.
Thanks ... I just changed the test to be '(signed char)200 == [val1 charValue]' since, for consistency, charValue always returns a signed char. _______________________________________________ Gnustep-dev mailing list [email protected] http://lists.gnu.org/mailman/listinfo/gnustep-dev
