diff options
author | Renato Botelho <renato@netgate.com> | 2016-01-25 08:56:15 -0200 |
---|---|---|
committer | Renato Botelho <renato@netgate.com> | 2016-01-25 08:56:15 -0200 |
commit | eb84e0723f3b4bc5e40024f66fe21c14b09e9ec4 (patch) | |
tree | fec6b99d018e13f1fccbe31478aaf29a28a55642 /contrib/ntp/tests/libntp/run-authkeys.c | |
parent | c50df8e1b90c4f9b8bbffa592477c129854776ce (diff) | |
parent | 94b1bbbd44bd88b6db1c00d795cdf7675b3ae254 (diff) | |
download | FreeBSD-src-eb84e0723f3b4bc5e40024f66fe21c14b09e9ec4.zip FreeBSD-src-eb84e0723f3b4bc5e40024f66fe21c14b09e9ec4.tar.gz |
Merge remote-tracking branch 'origin/stable/10' into devel
Diffstat (limited to 'contrib/ntp/tests/libntp/run-authkeys.c')
-rw-r--r-- | contrib/ntp/tests/libntp/run-authkeys.c | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/contrib/ntp/tests/libntp/run-authkeys.c b/contrib/ntp/tests/libntp/run-authkeys.c index 6a2b670..cc91876 100644 --- a/contrib/ntp/tests/libntp/run-authkeys.c +++ b/contrib/ntp/tests/libntp/run-authkeys.c @@ -26,6 +26,7 @@ #include "ntp.h" #include "ntp_stdlib.h" #include "ntp_calendar.h" +#include <limits.h> //=======External Functions This Runner Calls===== extern void setUp(void); @@ -36,6 +37,7 @@ extern void test_HaveKeyCorrect(void); extern void test_HaveKeyIncorrect(void); extern void test_AddWithAuthUseKey(void); extern void test_EmptyKey(void); +extern void test_auth_log2(void); //=======Test Reset Option===== @@ -54,12 +56,13 @@ int main(int argc, char *argv[]) { progname = argv[0]; UnityBegin("authkeys.c"); - RUN_TEST(test_AddTrustedKeys, 24); - RUN_TEST(test_AddUntrustedKey, 25); - RUN_TEST(test_HaveKeyCorrect, 26); - RUN_TEST(test_HaveKeyIncorrect, 27); - RUN_TEST(test_AddWithAuthUseKey, 28); - RUN_TEST(test_EmptyKey, 29); + RUN_TEST(test_AddTrustedKeys, 25); + RUN_TEST(test_AddUntrustedKey, 26); + RUN_TEST(test_HaveKeyCorrect, 27); + RUN_TEST(test_HaveKeyIncorrect, 28); + RUN_TEST(test_AddWithAuthUseKey, 29); + RUN_TEST(test_EmptyKey, 30); + RUN_TEST(test_auth_log2, 31); return (UnityEnd()); } |