#include #include #include #include MAIN(testexecname) { testPlan(1); { char *buf = epicsGetExecName(); if(!buf) { testSkip(1, "epicsGetExecName() not available for this target"); } else { char *loc = strstr(buf, "testexecname"); testOk(!!loc, "Find \"testexecname\" in \"%s\"", buf); } } return testDone(); }