X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=test%2Fmbuf_api_test.c;h=bbace5104ee264c26fb9f13052822e3f86dbf14d;hb=refs%2Fchanges%2F25%2F5925%2F2;hp=09c4da4cb1825c4511540f878de4ed9486eb1608;hpb=68d09fa5028e47e763c44c30647da31e77eda64a;p=ric-plt%2Flib%2Frmr.git diff --git a/test/mbuf_api_test.c b/test/mbuf_api_test.c index 09c4da4..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,6 +48,7 @@ #include "rmr.h" #include "rmr_agnostic.h" +#include "logging.c" #include "mbuf_api.c" #define MSG_VER 3 @@ -98,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; }