未验证 提交 b29c97e4 编写于 作者: O openharmony_ci 提交者: Gitee

!7031 hidebug测试用例修复1018

Merge pull request !7031 from chenxuihui/monthly_20221018
......@@ -30,7 +30,7 @@ describe('HidebugJsTest', function () {
console.log('************* DFX_DFR_Hiprofiler_Interface_0600 Test start*************');
try {
let heapSize = hidebug.getNativeHeapSize();
expect(heapSize>BigInt(0)).assertTrue();
expect(heapSize>=BigInt(0)).assertTrue();
} catch (error) {
expect().assertFail();
}
......@@ -46,7 +46,7 @@ describe('HidebugJsTest', function () {
console.log('************* DFX_DFR_Hiprofiler_Interface_0400 Test start*************');
try {
let heapAllocatedSize = hidebug.getNativeHeapAllocatedSize();
expect(heapAllocatedSize>BigInt(0)).assertTrue();
expect(heapAllocatedSize>=BigInt(0)).assertTrue();
} catch (error) {
expect().assertFail();
}
......@@ -62,7 +62,7 @@ describe('HidebugJsTest', function () {
console.log('************* DFX_DFR_Hiprofiler_Interface_0500 Test start*************');
try {
let heapFreeSize = hidebug.getNativeHeapFreeSize();
expect(heapFreeSize>BigInt(0)).assertTrue();
expect(heapFreeSize>=BigInt(0)).assertTrue();
} catch (error) {
expect().assertFail();
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册