2009-12-09 20:01:38 +01:00
|
|
|
#include <errno.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2011-11-14 11:07:49 +01:00
|
|
|
#if defined(__clang__)
|
|
|
|
#pragma clang diagnostic ignored "-Wtautological-compare"
|
|
|
|
#endif
|
|
|
|
|
2013-04-16 18:04:46 +02:00
|
|
|
int max_error = 4;
|
|
|
|
#include "common.h"
|
|
|
|
|
2009-12-09 20:01:38 +01:00
|
|
|
|
|
|
|
/* test strtol */
|
|
|
|
#define TYPE long
|
|
|
|
#define TYPEU unsigned long
|
|
|
|
#define TYPE_FUNC strtol
|
|
|
|
#include "test45.h"
|
|
|
|
#undef TYPE
|
|
|
|
#undef TYPEU
|
|
|
|
#undef TYPE_FUNC
|
|
|
|
|
|
|
|
/* test strtoul */
|
|
|
|
#define TYPE unsigned long
|
|
|
|
#define TYPEU unsigned long
|
|
|
|
#define TYPE_FUNC strtoul
|
|
|
|
#include "test45.h"
|
|
|
|
#undef TYPE
|
|
|
|
#undef TYPEU
|
|
|
|
#undef TYPE_FUNC
|
|
|
|
|
|
|
|
/* test strtoll */
|
|
|
|
#define TYPE long long
|
|
|
|
#define TYPEU unsigned long long
|
|
|
|
#define TYPE_FUNC strtoll
|
|
|
|
#include "test45.h"
|
|
|
|
#undef TYPE
|
|
|
|
#undef TYPEU
|
|
|
|
#undef TYPE_FUNC
|
|
|
|
|
|
|
|
/* test strtoull */
|
|
|
|
#define TYPE long long
|
|
|
|
#define TYPEU unsigned long long
|
|
|
|
#define TYPE_FUNC strtoull
|
|
|
|
#include "test45.h"
|
|
|
|
#undef TYPE
|
|
|
|
#undef TYPEU
|
|
|
|
#undef TYPE_FUNC
|
|
|
|
|
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
2011-12-16 15:45:53 +01:00
|
|
|
start(45);
|
2009-12-09 20:01:38 +01:00
|
|
|
|
|
|
|
/* run long/unsigned long tests */
|
|
|
|
test_strtol();
|
|
|
|
test_strtoul();
|
|
|
|
|
2012-02-17 17:12:44 +01:00
|
|
|
/* run long long/unsigned long long tests */
|
2009-12-09 20:01:38 +01:00
|
|
|
test_strtoll();
|
|
|
|
test_strtoull();
|
|
|
|
|
|
|
|
quit();
|
|
|
|
return -1; /* never happens */
|
|
|
|
}
|