X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=test%2Fmbuf_api_test.c;h=ac73976be7cda4a79549a269d30d9d874a14cc27;hb=refs%2Ftags%2F4.2.3;hp=fdc221af7e642fd46002ddabad34e7e6af87bdc9;hpb=412d53dfa2f9b5b56a448797d0dfec3b0f11f666;p=ric-plt%2Flib%2Frmr.git diff --git a/test/mbuf_api_test.c b/test/mbuf_api_test.c index fdc221a..ac73976 100644 --- a/test/mbuf_api_test.c +++ b/test/mbuf_api_test.c @@ -31,6 +31,8 @@ */ +#define NO_EMULATION + #include #include #include @@ -48,6 +50,7 @@ #include "mbuf_api.c" +#define MSG_VER 3 #include "test_support.c" // our private library of test tools #include "mbuf_api_static_test.c" // test functions @@ -97,9 +100,12 @@ int main( ) { errors += mbuf_api_test( ); + test_summary( errors, "mbuf API tests" ); if( errors ) { fprintf( stderr, " mbuf_api tests failed\n" ); } else { fprintf( stderr, " mbuf_api tests pass\n" ); } + + return errors; }