mirror of
https://github.com/libexpat/libexpat.git
synced 2025-04-06 13:45:00 +00:00
tests: Use NAN and INFINITY of C99 and C++11
Effectively reverts commit f6f5d9bb4c
.
This commit is contained in:
parent
d285fafaca
commit
9411ac625b
1 changed files with 3 additions and 12 deletions
|
@ -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");
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue