TDengine/source/libs/sync/test/syncIOServerTest.cpp

34 lines
619 B
C++
Raw Normal View History

#include <gtest/gtest.h>
2022-03-06 09:59:24 +00:00
#include <stdio.h>
2022-03-02 08:37:04 +00:00
#include "syncIO.h"
#include "syncInt.h"
#include "syncRaftStore.h"
void logTest() {
sTrace("--- sync log test: trace");
sDebug("--- sync log test: debug");
sInfo("--- sync log test: info");
sWarn("--- sync log test: warn");
sError("--- sync log test: error");
sFatal("--- sync log test: fatal");
}
int main() {
// taosInitLog((char *)"syncTest.log", 100000, 10);
tsAsyncLog = 0;
sDebugFlag = 143 + 64;
logTest();
int32_t ret;
ret = syncIOStart((char *)"127.0.0.1", 7030);
assert(ret == 0);
while (1) {
2022-03-10 03:56:11 +00:00
taosSsleep(1);
2022-03-02 08:37:04 +00:00
}
return 0;
}