summaryrefslogtreecommitdiff
path: root/test/math/ilogb.c
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@uclibc-ng.org>2016-10-28 20:29:21 +0200
committerWaldemar Brodkorb <wbx@uclibc-ng.org>2016-10-28 20:31:55 +0200
commit99ef2719fb3d703fe38c4113cd7f5adec516dd3a (patch)
tree2c1f77cb41b60ccbf8faa77a3640491a3546b546 /test/math/ilogb.c
parent543308f6c46cf2edf8a524bc9c631e472570fe72 (diff)
test: remove test suite
The test suite is now a developed in a separate git repository. See here: http://cgit.uclibc-ng.org/cgi/cgit/uclibc-ng-test.git The test suite should be just like every other software compiled with the cross-toolchain. In the past strange problems where found when the test suite got build in the toolchain creation step.
Diffstat (limited to 'test/math/ilogb.c')
-rw-r--r--test/math/ilogb.c52
1 files changed, 0 insertions, 52 deletions
diff --git a/test/math/ilogb.c b/test/math/ilogb.c
deleted file mode 100644
index 041e66b0e..000000000
--- a/test/math/ilogb.c
+++ /dev/null
@@ -1,52 +0,0 @@
-#include <math.h>
-#include <float.h>
-#include <stdlib.h>
-#include <stdint.h>
-#include <limits.h>
-#include <stdio.h>
-
-#define check_d1(func, param, expected) \
-do { \
- int err; hex_union ur; hex_union up; \
- double result = func(param); up.f = param; ur.f = result; \
- errors += (err = (result != (expected))); \
- err \
- ? printf("FAIL: %s(%g/"HEXFMT")=%g/"HEXFMT" (expected %g)\n", \
- #func, (double)(param), (long long)up.hex, result, (long long)ur.hex, (double)(expected)) \
- : printf("PASS: %s(%g)=%g\n", #func, (double)(param), result); \
-} while (0)
-
-#define check_i1(func, param, expected) \
-do { \
- int err; hex_union up; \
- long long result = func(param); up.f = param; \
- errors += (err = (result != (expected))); \
- err \
- ? printf("FAIL: %s(%g/"HEXFMT")=%lld/%llu (expected %llu)\n", \
- #func, (double)(param), (long long)up.hex, result, result, (long long)(expected)) \
- : printf("PASS: %s(%g)=%lld/%llu\n", #func, (double)(param), result, result); \
-} while (0)
-
-#define HEXFMT "%08llx"
-typedef union {
- double f;
- uint64_t hex;
-} hex_union;
-
-double nan_value = 0.0;
-int errors = 0;
-
-int main(void)
-{
- nan_value /= nan_value;
-
- check_i1(ilogb, 0.0, FP_ILOGB0);
- check_i1(ilogb, HUGE_VAL, INT_MAX);
- check_i1(ilogb, nan_value, FP_ILOGBNAN);
- check_i1(ilogbf, 0.0, FP_ILOGB0);
- check_i1(ilogbf, HUGE_VALF, INT_MAX);
- check_i1(ilogbf, nan_value, FP_ILOGBNAN);
-
- printf("Errors: %d\n", errors);
- return errors;
-}