EMS/test/test.c

53 lines
1.1 KiB
C
Raw Normal View History

#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");
char *str = (char *)arg;
for ( int i = 0; i < 100000; i++ )
{
logger_level_printf(LOGGER_DEBUG_LEVEL, "this an debug %s %d", str, 525 + i);
logger_level_printf(LOGGER_INFO_LEVEL, "this an info %s %d", str, 525 + i);
logger_level_printf(LOGGER_WARN_LEVEL, "this an warn %s %d", str, 525 + i);
logger_level_printf(LOGGER_ERROR_LEVEL, "this an error %s %d", str, 525 + i);
if ( i % 10000 == 0 )
{
sleep(1);
}
}
}
void testDI()
{
di_open();
}
void testDO()
{
do_open();
}