libCom/test: Add epicsInlineTest

This commit is contained in:
Michael Davidsaver
2015-02-27 17:29:10 -05:00
parent b3bfac3f16
commit 84e9ff3bc5
6 changed files with 156 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
/*************************************************************************\
* Copyright (c) 2015 Brookhaven Science Associates, as Operator of
* Brookhaven National Laboratory.
* EPICS BASE is distributed subject to a Software License Agreement found
* in file LICENSE that is included with this distribution.
\*************************************************************************/
#include "compilerSpecific.h"
#include "epicsUnitTest.h"
static EPICS_ALWAYS_INLINE int epicsInlineTestFn1(void)
{
return 4;
}
inline int epicsInlineTestFn2(void)
{
return 42;
}
extern "C"
void epicsInlineTest4(void)
{
testDiag("epicsInlineTest4()");
testOk1(epicsInlineTestFn1()==4);
testOk1(epicsInlineTestFn2()==42);
}