added testClientFactory test

This commit is contained in:
Matej Sekoranja
2016-03-01 08:22:05 +01:00
parent 9be026efc7
commit 19031af095
3 changed files with 18 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
#include <epicsExit.h>
#include <pv/clientFactory.h>
#include <pv/pvAccess.h>
int main()
{
epics::pvAccess::ClientFactory::start();
epics::pvAccess::getChannelProviderRegistry()->getProvider("pva");
epics::pvAccess::ClientFactory::stop();
//epicsThreadSleep ( 3.0 );
//epicsExitCallAtExits();
return 0;
}