]> git.ipfire.org Git - thirdparty/ntp.git/commitdiff
minor change in testrunner
authorDamir Tomic <viperus@ntp.org>
Wed, 10 Jun 2015 11:09:48 +0000 (13:09 +0200)
committerDamir Tomic <viperus@ntp.org>
Wed, 10 Jun 2015 11:09:48 +0000 (13:09 +0200)
bk: 55781afc33gpkxoxpnPYLxjilNsQVw

tests/libntp/run-test-lfpfunc.c

index d4a78f7409a17200e777ad7d59584f474b78e72d..f0a9ad8edf583def31a0052469a5dfc23558ea6f 100644 (file)
@@ -31,6 +31,8 @@ extern void test_AdditionRL();
 extern void test_SubtractionLR();
 extern void test_SubtractionRL();
 extern void test_Negation();
+extern void test_Absolute();
+extern void test_FDF_RoundTrip();
 
 
 //=======Test Reset Option=====
@@ -46,11 +48,13 @@ int main(void)
 {
   Unity.TestFile = "lfpfunc.c";
   UnityBegin("lfpfunc.c");
-  RUN_TEST(test_AdditionLR, 438);
-  RUN_TEST(test_AdditionRL, 456);
-  RUN_TEST(test_SubtractionLR, 474);
-  RUN_TEST(test_SubtractionRL, 488);
-  RUN_TEST(test_Negation, 505);
+  RUN_TEST(test_AdditionLR, 463);
+  RUN_TEST(test_AdditionRL, 481);
+  RUN_TEST(test_SubtractionLR, 499);
+  RUN_TEST(test_SubtractionRL, 513);
+  RUN_TEST(test_Negation, 530);
+  RUN_TEST(test_Absolute, 549);
+  RUN_TEST(test_FDF_RoundTrip, 581);
 
   return (UnityEnd());
 }