X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=test%2Ftools_test.c;fp=test%2Ftools_test.c;h=a29c0e253b5571d9c614805ed65ad302599b661c;hb=8dd46415b94b33fa960bdd5732e909ffc4859520;hp=786d2e6ef2da3c1ba29beb5688f6b2e1d146ebc6;hpb=68c5cf1104e89f5c43786a3e48f5c6a1e757f59f;p=ric-plt%2Flib%2Frmr.git diff --git a/test/tools_test.c b/test/tools_test.c index 786d2e6..a29c0e2 100644 --- a/test/tools_test.c +++ b/test/tools_test.c @@ -36,14 +36,6 @@ #include #include -/* -#include -#include -#include -#include -#include -*/ - #include "../src/common/include/rmr.h" #include "../src/common/include/rmr_agnostic.h" #include "test_support.c" // our private library of test tools @@ -148,18 +140,6 @@ int main( ) { i = uta_lookup_rtg( &ctx ); errors += fail_if_true( i, "rtg lookup returned that it found something when not expected to" ); -/* -//==== moved out of generic tools ========== - // -------------- test link2 stuff ---------------------------------------------------------- - i = uta_link2( "bad" ); // should fail - errors += fail_if_true( i >= 0, "uta_link2 didn't fail when given bad address" ); - - i = uta_link2( "nohost:-1234" ); - errors += fail_if_true( i >= 0, "uta_link2 did not failed when given a bad (negative) port " ); - - i = uta_link2( "nohost:1234" ); // nn should go off and set things up, but it will never successd, but uta_ call should - errors += fail_if_true( i < 0, "uta_link2 failed when not expected to" ); -*/ // ------------ my ip stuff -----------------------------------------------------------------