case: fix memory leak with return cause
This commit is contained in:
parent
273e47a1fb
commit
7744a31deb
|
@ -86,30 +86,29 @@ class TDTestCase(TBase):
|
|||
tdLog.debug(f"start to excute {__file__}")
|
||||
if eos.isArm64Cpu():
|
||||
tdLog.success(f"{__file__} arm64 ignore executed")
|
||||
return
|
||||
else:
|
||||
# insert data
|
||||
self.insertData()
|
||||
|
||||
# insert data
|
||||
self.insertData()
|
||||
# check insert data correct
|
||||
self.checkInsertCorrect()
|
||||
|
||||
# check insert data correct
|
||||
self.checkInsertCorrect()
|
||||
# save
|
||||
self.snapshotAgg()
|
||||
|
||||
# save
|
||||
self.snapshotAgg()
|
||||
# do action
|
||||
self.doAction()
|
||||
|
||||
# do action
|
||||
self.doAction()
|
||||
# check save agg result correct
|
||||
self.checkAggCorrect()
|
||||
|
||||
# check save agg result correct
|
||||
self.checkAggCorrect()
|
||||
# check insert correct again
|
||||
self.checkInsertCorrect()
|
||||
|
||||
# check insert correct again
|
||||
self.checkInsertCorrect()
|
||||
# drop database and free s3 file
|
||||
self.dropDb()
|
||||
|
||||
# drop database and free s3 file
|
||||
self.dropDb()
|
||||
|
||||
tdLog.success(f"{__file__} successfully executed")
|
||||
tdLog.success(f"{__file__} successfully executed")
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue