/*************************************************************************\ * Copyright (c) 2021 Michael Davidsaver * SPDX-License-Identifier: EPICS * EPICS BASE is distributed subject to a Software License Agreement found * in file LICENSE that is included with this distribution. \*************************************************************************/ #include #include #include #include #include static void testHookNames(void) { const char* s; s = initHookName(initHookAtEnd); testOk(strcmp(s, "initHookAtEnd")==0, "'%s' == 'initHookAtEnd'", s); } MAIN(initHookTest) { testPlan(1); testHookNames(); return testDone(); }