tests: Use NAN and INFINITY of C99 and C++11

Effectively reverts commit f6f5d9bb4c.
This commit is contained in:
Sebastian Pipping 2023-11-07 14:20:01 +01:00
parent d285fafaca
commit 9411ac625b

View file

@ -41,6 +41,7 @@
USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
#include <math.h> /* NAN, INFINITY */
#include <stdio.h>
#include <string.h>
@ -285,16 +286,6 @@ START_TEST(test_accounting_precision) {
}
END_TEST
static float
portableNAN(void) {
return strtof("nan", NULL);
}
static float
portableINFINITY(void) {
return strtof("infinity", NULL);
}
START_TEST(test_billion_laughs_attack_protection_api) {
XML_Parser parserWithoutParent = XML_ParserCreate(NULL);
XML_Parser parserWithParent
@ -313,7 +304,7 @@ START_TEST(test_billion_laughs_attack_protection_api) {
== XML_TRUE)
fail("Call with non-root parser is NOT supposed to succeed");
if (XML_SetBillionLaughsAttackProtectionMaximumAmplification(
parserWithoutParent, portableNAN())
parserWithoutParent, NAN)
== XML_TRUE)
fail("Call with NaN limit is NOT supposed to succeed");
if (XML_SetBillionLaughsAttackProtectionMaximumAmplification(
@ -335,7 +326,7 @@ START_TEST(test_billion_laughs_attack_protection_api) {
== XML_FALSE)
fail("Call with positive limit >=1.0 is supposed to succeed");
if (XML_SetBillionLaughsAttackProtectionMaximumAmplification(
parserWithoutParent, portableINFINITY())
parserWithoutParent, INFINITY)
== XML_FALSE)
fail("Call with positive limit >=1.0 is supposed to succeed");