2024-11-04 16:59:51 +08:00
|
|
|
#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();
|
2024-11-05 17:17:30 +08:00
|
|
|
// testDI();
|
|
|
|
// testDO();
|
2024-11-04 16:59:51 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
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");
|
|
|
|
|
2024-11-05 17:17:30 +08:00
|
|
|
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");
|
2024-11-04 16:59:51 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void testDI()
|
|
|
|
{
|
|
|
|
di_open();
|
|
|
|
}
|
|
|
|
|
|
|
|
void testDO()
|
|
|
|
{
|
|
|
|
do_open();
|
|
|
|
}
|