summaryrefslogtreecommitdiff
path: root/tests/aspath_test.c
diff options
context:
space:
mode:
authorpaul <paul>2005-10-11 03:48:28 +0000
committerpaul <paul>2005-10-11 03:48:28 +0000
commit84771ee0deadae6d83b939a2d3f8f83cc420a829 (patch)
tree68b3e5c5cc6e84dd7d57a4bda2e61616d518a1a2 /tests/aspath_test.c
parent77df1f78597af79209777d264ec9986f33a2fd17 (diff)
2005-10-11 Paul Jakma <paul.jakma@sun.com>
* test-privs.c: Privileges unit test. * Makefile.am: build testprivs * aspath_test.c: fix a few sign warnings
Diffstat (limited to 'tests/aspath_test.c')
-rw-r--r--tests/aspath_test.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/aspath_test.c b/tests/aspath_test.c
index f9e0a74f..f025cb77 100644
--- a/tests/aspath_test.c
+++ b/tests/aspath_test.c
@@ -18,8 +18,8 @@ struct test_spec
{
const char *shouldbe; /* the string the path should parse to */
const char *shouldbe_delete_confed; /* ditto, but once confeds are deleted */
- const int hops; /* aspath_count_hops result */
- const int confeds; /* aspath_count_confeds */
+ const unsigned int hops; /* aspath_count_hops result */
+ const unsigned int confeds; /* aspath_count_confeds */
const int private_as; /* whether the private_as check should pass or fail */
#define NOT_ALL_PRIVATE 0
#define ALL_PRIVATE 1
@@ -731,7 +731,7 @@ aggregate_test (struct tests *t)
static void
cmp_test ()
{
- int i;
+ unsigned int i;
#define CMP_TESTS_MAX \
(sizeof(left_compare) / sizeof (struct compare_tests))