diff options
Diffstat (limited to 'tests/libntp/run-decodenetnum.c')
-rw-r--r-- | tests/libntp/run-decodenetnum.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/tests/libntp/run-decodenetnum.c b/tests/libntp/run-decodenetnum.c index ef2b3c68eb61..0d306497201a 100644 --- a/tests/libntp/run-decodenetnum.c +++ b/tests/libntp/run-decodenetnum.c @@ -33,8 +33,11 @@ extern void test_IPv4AddressOnly(void); extern void test_IPv4AddressWithPort(void); extern void test_IPv6AddressOnly(void); extern void test_IPv6AddressWithPort(void); +extern void test_IPv6AddressWithScope(void); +extern void test_IPv6AddressWithPortAndScope(void); extern void test_IllegalAddress(void); extern void test_IllegalCharInPort(void); +extern void test_NameBufOverflow(void); //=======Suite Setup===== @@ -67,8 +70,11 @@ int main(int argc, char *argv[]) RUN_TEST(test_IPv4AddressWithPort, 9); RUN_TEST(test_IPv6AddressOnly, 10); RUN_TEST(test_IPv6AddressWithPort, 11); - RUN_TEST(test_IllegalAddress, 12); - RUN_TEST(test_IllegalCharInPort, 13); + RUN_TEST(test_IPv6AddressWithScope, 12); + RUN_TEST(test_IPv6AddressWithPortAndScope, 13); + RUN_TEST(test_IllegalAddress, 14); + RUN_TEST(test_IllegalCharInPort, 15); + RUN_TEST(test_NameBufOverflow, 16); return (UnityEnd()); } |