Merge pull request #24073 from taosdata/enh/xsren/TD-27724/utest
enh: osSystemTest
This commit is contained in:
commit
bf151eafdc
|
@ -38,4 +38,25 @@ TEST(osSystemTest, osSystem1) {
|
||||||
#else
|
#else
|
||||||
taosLogTraceToBuf(tmp, sizeof(tmp), 8);
|
taosLogTraceToBuf(tmp, sizeof(tmp), 8);
|
||||||
#endif
|
#endif
|
||||||
|
double cpu_engine;
|
||||||
|
double cpu_system;
|
||||||
|
float cpu_cores;
|
||||||
|
int64_t mem_engine; // KB
|
||||||
|
int64_t mem_system; // KB
|
||||||
|
|
||||||
|
taosGetCpuUsage(&cpu_system, &cpu_engine);
|
||||||
|
taosGetCpuCores(&cpu_cores, false);
|
||||||
|
|
||||||
|
taosGetProcMemory(&mem_engine);
|
||||||
|
taosGetSysMemory(&mem_system);
|
||||||
|
printf("cpu_engine: %f cpu_system: %f\n", cpu_engine, cpu_system);
|
||||||
|
printf("cpu_cores: %f\n", cpu_cores);
|
||||||
|
ASSERT_GT(cpu_cores, 0);
|
||||||
|
ASSERT_GE(mem_engine, 0);
|
||||||
|
ASSERT_GE(mem_system, 0);
|
||||||
|
|
||||||
|
float numOfCores = 0;
|
||||||
|
int32_t res = taosGetCpuInfo(tmp, 4096, &numOfCores);
|
||||||
|
printf("cpu info: %s\n", tmp);
|
||||||
|
ASSERT_EQ(res, 0);
|
||||||
}
|
}
|
||||||
|
|
|
@ -24,7 +24,7 @@ from util.common import *
|
||||||
from util.sqlset import TDSetSql
|
from util.sqlset import TDSetSql
|
||||||
|
|
||||||
class TDTestCase:
|
class TDTestCase:
|
||||||
updatecfgDict = {'tsdbdebugFlag': 143}
|
updatecfgDict = {'tsdbdebugFlag': 131}
|
||||||
def init(self, conn, logSql, replicaVar=1):
|
def init(self, conn, logSql, replicaVar=1):
|
||||||
self.replicaVar = int(replicaVar)
|
self.replicaVar = int(replicaVar)
|
||||||
tdLog.debug("start to execute %s" % __file__)
|
tdLog.debug("start to execute %s" % __file__)
|
||||||
|
@ -36,7 +36,7 @@ class TDTestCase:
|
||||||
self.setsql = TDSetSql()
|
self.setsql = TDSetSql()
|
||||||
self.stbname = 'stb'
|
self.stbname = 'stb'
|
||||||
self.ntbname = 'ntb'
|
self.ntbname = 'ntb'
|
||||||
self.rowNum = 10
|
self.rowNum = 3
|
||||||
self.tbnum = 3
|
self.tbnum = 3
|
||||||
self.ts = 1537146000000
|
self.ts = 1537146000000
|
||||||
self.binary_str = 'taosdata'
|
self.binary_str = 'taosdata'
|
||||||
|
|
Loading…
Reference in New Issue