EMS/test/test.c

45 lines
871 B
C

#include <stdio.h>
#include <pthread.h>
#include "test.h"
#include "kit_logger.h"
#include "drv_di.h"
#include "drv_do.h"
void runTest()
{
printf("runTest...\n");
testCreatThreadTask();
// testDI();
// testDO();
}
void testCreatThreadTask()
{
printf("testThreadTask\n");
logger_init("./log");
pthread_t tTestLogger;
pthread_create(&tTestLogger, NULL, testLoggerThread, "testLoggerThread");
pthread_join(tTestLogger, NULL);
logger_destroy();
}
void *testLoggerThread(void *arg)
{
printf("testLoggerThread\n");
logger_level_printf(LOGGER_DEBUG_LEVEL, "this an debug");
logger_level_printf(LOGGER_INFO_LEVEL, "this an info");
logger_level_printf(LOGGER_WARN_LEVEL, "this an warn");
logger_level_printf(LOGGER_ERROR_LEVEL, "this an error");
}
void testDI()
{
di_open();
}
void testDO()
{
do_open();
}