X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=test%2Fmbuf_api_test.c;h=bbace5104ee264c26fb9f13052822e3f86dbf14d;hb=HEAD;hp=796888f43b870fce3dd739dc14e640e1b448438a;hpb=85c5bf71db97dc7c4f15bd170b17c85e53ee0f24;p=ric-plt%2Flib%2Frmr.git diff --git a/test/mbuf_api_test.c b/test/mbuf_api_test.c index 796888f..bbace51 100644 --- a/test/mbuf_api_test.c +++ b/test/mbuf_api_test.c @@ -1,8 +1,8 @@ // : vi ts=4 sw=4 noet : /* ================================================================================== - Copyright (c) 2019 Nokia - Copyright (c) 2018-2019 AT&T Intellectual Property. + Copyright (c) 2019-2021 Nokia + Copyright (c) 2018-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. @@ -31,6 +31,8 @@ */ +#define NO_EMULATION + #include #include #include @@ -46,8 +48,10 @@ #include "rmr.h" #include "rmr_agnostic.h" +#include "logging.c" #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,11 +101,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; + return !! errors; }