X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=test%2Frmr_nng_test.c;h=bef4a24eeb9b5dbe97abcc6d104c87d81b05737d;hb=2bd8785ce17397e6f8e686be421c5a6c860a0b8c;hp=a3aeb40f152cb2b5404bf4acc56ea86bcd6c3fd7;hpb=0d4def6c7b673f3be486338ced65ccdd25a859ed;p=ric-plt%2Flib%2Frmr.git diff --git a/test/rmr_nng_test.c b/test/rmr_nng_test.c index a3aeb40..bef4a24 100644 --- a/test/rmr_nng_test.c +++ b/test/rmr_nng_test.c @@ -62,6 +62,7 @@ #include #include +#define NNG_UNDER_TEST 1 #define EMULATE_NNG #include "test_nng_em.c" // nng/nn emulation (before including things under test) @@ -70,7 +71,6 @@ #include "rmr_symtab.h" #include "rmr_logging.h" #include "rmr_agnostic.h" // transport agnostic header -#include "rmr_nng_private.h" // transport specific #include "symtab.c" #include "logging.c" @@ -81,6 +81,7 @@ static void gen_rt( uta_ctx_t* ctx ); // defined in sr_nng_static_test, but use // specific test tools in this directory #include "test_support.c" // things like fail_if() +#include "test_ctx_support.c" // specifically geared to creating dummy contex structs #include "test_gen_rt.c" // and finally.... #include "tools_static_test.c" // local test functions pulled directly because of static nature of things @@ -135,6 +136,7 @@ int main() { errors += mbuf_api_test( ); fprintf( stderr, " error count: %d\n", errors ); + test_summary( errors, "tool tests" ); if( errors == 0 ) { fprintf( stderr, " all tests were OK\n\n" ); } else {