add test of -1

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@6357 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Assar Westerlund
1999-06-23 12:39:42 +00:00
parent 6f45b38721
commit 86d38a634d

View File

@@ -154,10 +154,11 @@ test_integer (void)
{NULL, 4, "\x02\x02\x00\x80"}, {NULL, 4, "\x02\x02\x00\x80"},
{NULL, 4, "\x02\x02\x01\x00"}, {NULL, 4, "\x02\x02\x01\x00"},
{NULL, 3, "\x02\x01\x80"}, {NULL, 3, "\x02\x01\x80"},
{NULL, 4, "\x02\x02\xff\x7f"} {NULL, 4, "\x02\x02\xff\x7f"},
{NULL, 3, "\x02\x01\xff"}
}; };
int values[] = {0, 127, 128, 256, -128, -129}; int values[] = {0, 127, 128, 256, -128, -129, -1};
int i; int i;
int ntests = sizeof(tests) / sizeof(*tests); int ntests = sizeof(tests) / sizeof(*tests);