X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=test%2Frmr_si_test.c;h=256e2bd0fdce71ac4f11420ef71053936cb96f8f;hb=refs%2Fchanges%2F25%2F5925%2F2;hp=9f4953067da1ac42f2d3ecbbc570dbd9ec61717d;hpb=fc5c77b3d78988aa407118235d7f5978642df753;p=ric-plt%2Flib%2Frmr.git diff --git a/test/rmr_si_test.c b/test/rmr_si_test.c index 9f49530..256e2bd 100644 --- a/test/rmr_si_test.c +++ b/test/rmr_si_test.c @@ -1,8 +1,8 @@ // :vi sw=4 ts=4 noet: /* ================================================================================== - Copyright (c) 2020 Nokia - Copyright (c) 2020 AT&T Intellectual Property. + Copyright (c) 2020-2021 Nokia + Copyright (c) 2020-2021 AT&T Intellectual Property. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -55,11 +55,12 @@ #include #define DEBUG 1 +#define PARANOID_CHECKS 1 // must have parinoid testing on to not fail on nil pointer tests // specific test tools in this directory #undef NNG_UNDER_TEST #include "test_support.c" // things like fail_if() -#include "test_ctx_support.c" // dummy context support +#include "test_msg_support.c" #include "test_gen_rt.c" @@ -73,6 +74,9 @@ #include "rmr_si.c" #include "mbuf_api.c" +#include "test_ctx_support.c" // dummy context support + + static void gen_rt( uta_ctx_t* ctx ); // defined in sr_si_static_test, but used by a few others (eliminate order requirement below) // and finally.... @@ -83,6 +87,9 @@ static void gen_rt( uta_ctx_t* ctx ); // defined in sr_si_static_test, but used #include "wormhole_static_test.c" #include "mbuf_api_static_test.c" #include "sr_si_static_test.c" +#include "lg_buf_static_test.c" +#include "alarm_static_test.c" +// do NOT include the receive test static must be stand alone #include "rmr_si_api_static_test.c" @@ -95,6 +102,14 @@ int main() { rmr_set_vlevel( 5 ); // enable all debugging + fprintf( stderr, "\n starting alarm tests (%d)\n", errors ); + errors += alarm_test(); + fprintf( stderr, " error count: %d\n", errors ); + + fprintf( stderr, "\n starting lg buffer tests (%d)\n", errors ); + errors += rmr_lgbuf_test(); + fprintf( stderr, " error count: %d\n", errors ); + fprintf( stderr, "\n starting ring tests (%d)\n", errors ); errors += ring_test(); fprintf( stderr, " error count: %d\n", errors ); @@ -127,18 +142,16 @@ int main() { fprintf( stderr, "\n starting RMr API tests\n" ); errors += rmr_api_test(); -/// ---- all ok above here -/* fprintf( stderr, "\n run RMr API tests with src name only env var set\n" ); setenv( "RMR_SRC_NAMEONLY", "1", 1 ); errors += rmr_api_test(); fprintf( stderr, " error count: %d\n", errors ); -*/ + test_summary( errors, "rmr_si tests" ); if( errors == 0 ) { - fprintf( stderr, " all tests were OK\n\n" ); + fprintf( stderr, " all rmr si tests were OK\n\n" ); } else { - fprintf( stderr, " %d modules reported errors\n\n", errors ); + fprintf( stderr, " %d rmr si test modules reported errors\n\n", errors ); } return !!errors;