ObjFW  Check-in [142f0d1242]

Overview
Comment:Exclude HP-UX from 0x test for -[doubleValue]
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 142f0d12429dbd88d0b9b1aaffc9ba0e6ad0549b06abf1c0fa7a396fb2dca6a2
User & Date: js on 2021-01-01 22:15:22
Other Links: manifest | tags
Context
2021-01-01
22:19
Workaround for binding to port 0 on HP-UX check-in: d1bd191ac7 user: js tags: trunk
22:15
Exclude HP-UX from 0x test for -[doubleValue] check-in: 142f0d1242 user: js tags: trunk
22:11
OFString: Manually handle NaN check-in: cd4fd689d6 user: js tags: trunk
Changes

Modified tests/OFStringTests.m from [27d0709520] to [36a2a4713a].

1109
1110
1111
1112
1113
1114
1115
1116
1117


1118
1119
1120
1121

1122
1123
1124
1125
1126
1127
1128
1109
1110
1111
1112
1113
1114
1115


1116
1117
1118
1119
1120

1121
1122
1123
1124
1125
1126
1127
1128







-
-
+
+



-
+







	TEST(@"-[floatValue]",
	    C(@"\t-0.25 ").floatValue == -0.25 &&
	    C(@"\r\n\tINF\t\n").floatValue == INFINITY &&
	    C(@"\r -INFINITY\n").floatValue == -INFINITY &&
	    isnan(C(@"   NAN\t\t").floatValue) &&
	    isnan(C(@"   -NaN\t\t").floatValue))

#if !defined(OF_ANDROID) && !defined(OF_SOLARIS) && !defined(OF_DJGPP) && \
    !defined(OF_AMIGAOS_M68K)
#if !defined(OF_ANDROID) && !defined(OF_SOLARIS) && !defined(OF_HPUX) && \
    !defined(OF_DJGPP) && !defined(OF_AMIGAOS_M68K)
# define INPUT @"\t-0x1.FFFFFFFFFFFFFP-1020 "
# define EXPECTED -0x1.FFFFFFFFFFFFFP-1020
#else
/* Android, Solaris, DJGPP and AmigaOS3 do not accept 0x for strtod() */
/* Android, Solaris, HP-UX, DJGPP and AmigaOS 3 do not accept 0x for strtod() */
# if (!defined(OF_SOLARIS) || !defined(OF_X86)) && !defined(OF_AMIGAOS_M68K)
#  define INPUT @"\t-0.123456789 "
#  define EXPECTED -0.123456789
# else
/*
 * Solaris' strtod() has weird rounding on x86, but not on x86_64.
 * AmigaOS 3 with libnix has weird rounding as well.