mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 21:23:58 +01:00
Check more values of int
This commit is contained in:
parent
0bc9ed9d38
commit
280109473f
@ -33,7 +33,11 @@ test_int_voidstar_interop(void *arg)
|
||||
int a;
|
||||
(void)arg;
|
||||
|
||||
for (a = 0; a <= 1024; a++) {
|
||||
for (a = -1024; a <= 1024; a++) {
|
||||
assert_int_voidptr_roundtrip(a);
|
||||
}
|
||||
|
||||
for (a = INT_MIN; a <= INT_MIN+1024; a++) {
|
||||
assert_int_voidptr_roundtrip(a);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user