Refrain from doing exhaustive iteration over all values of integers

This commit is contained in:
rl1987 2019-03-12 12:01:26 +02:00
parent d731ab4583
commit 052ec08a08

View File

@ -10,14 +10,40 @@
#include <stdint.h> #include <stdint.h>
#include <limits.h> #include <limits.h>
/** Check that all values of int can be cast to void * and back. */ /** Assert that <b>a</b> can be cast to void * and back. */
static void
assert_int_voidptr_roundtrip(int a)
{
intptr_t ap = (intptr_t)a;
void *b = (void *)ap;
intptr_t c = (intptr_t)b;
void *d = (void *)c;
tt_assert(ap == c);
tt_assert(b == d);
done:
return;
}
static void static void
test_int_voidstar_interop(void *arg) test_int_voidstar_interop(void *arg)
{ {
int a; int a;
(void)arg; (void)arg;
for (a = INT_MIN; a < INT_MAX; a++) { for (a = 0; a <= 1024; a++) {
assert_int_voidptr_roundtrip(a);
}
for (a = INT_MAX-1024; a < INT_MAX; a++) {
assert_int_voidptr_roundtrip(a);
}
}
static void
assert_uint_voidptr_roundtrip(unsigned int a)
{
intptr_t ap = (intptr_t)a; intptr_t ap = (intptr_t)a;
void *b = (void *)ap; void *b = (void *)ap;
intptr_t c = (intptr_t)b; intptr_t c = (intptr_t)b;
@ -25,31 +51,24 @@ test_int_voidstar_interop(void *arg)
tt_assert(ap == c); tt_assert(ap == c);
tt_assert(b == d); tt_assert(b == d);
}
done: done:
return; return;
} }
/** Check that all values of unsigned int can be cast to void * and back. */
static void static void
test_uint_voidstar_interop(void *arg) test_uint_voidstar_interop(void *arg)
{ {
unsigned int a; unsigned int a;
(void)arg; (void)arg;
for (a = 0; a < UINT_MAX; a++) { for (a = 0; a <= 1024; a++) {
intptr_t ap = (intptr_t)a; assert_uint_voidptr_roundtrip(a);
void *b = (void *)ap;
intptr_t c = (intptr_t)b;
void *d = (void *)c;
tt_assert(ap == c);
tt_assert(b == d);
} }
done: for (a = UINT_MAX-1024; a < UINT_MAX; a++) {
return; assert_uint_voidptr_roundtrip(a);
}
} }
struct testcase_t slow_ptr_tests[] = { struct testcase_t slow_ptr_tests[] = {