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

!4437 hidebug测试用例修复

Merge pull request !4437 from chenxuihui/OpenHarmony-3.2-Beta2
...@@ -71,7 +71,7 @@ describe('HidebugJsTest', function () { ...@@ -71,7 +71,7 @@ describe('HidebugJsTest', function () {
* @tc.name : getPss * @tc.name : getPss
* @tc.desc : Get application process proportional set size memory information * @tc.desc : Get application process proportional set size memory information
*/ */
it('DFX_DFR_Hiprofiler_Interface_0004', 0, function (done) { it('DFX_DFR_Hiprofiler_Interface_0004', 0, function () {
console.log('************* DFX_DFR_Hiprofiler_Interface_0004 Test start*************'); console.log('************* DFX_DFR_Hiprofiler_Interface_0004 Test start*************');
try { try {
const times = 3; const times = 3;
...@@ -94,7 +94,7 @@ describe('HidebugJsTest', function () { ...@@ -94,7 +94,7 @@ describe('HidebugJsTest', function () {
* @tc.name : getSharedDirty * @tc.name : getSharedDirty
* @tc.desc : Obtains the size of the shared dirty memory of a process. * @tc.desc : Obtains the size of the shared dirty memory of a process.
*/ */
it('DFX_DFR_Hiprofiler_Interface_0005', 0, function (done) { it('DFX_DFR_Hiprofiler_Interface_0005', 0, function () {
console.log('************* DFX_DFR_Hiprofiler_Interface_0005 Test start*************'); console.log('************* DFX_DFR_Hiprofiler_Interface_0005 Test start*************');
try { try {
let dirty = hidebug.getSharedDirty(); let dirty = hidebug.getSharedDirty();
...@@ -111,7 +111,7 @@ describe('HidebugJsTest', function () { ...@@ -111,7 +111,7 @@ describe('HidebugJsTest', function () {
* @tc.name : startProfiling with normal parameter * @tc.name : startProfiling with normal parameter
* @tc.desc : Start CPU Profiling. * @tc.desc : Start CPU Profiling.
*/ */
it('DFX_DFR_Hiprofiler_Interface_0006', 0, function (done) { it('DFX_DFR_Hiprofiler_Interface_0006', 0, function () {
console.log('************* DFX_DFR_Hiprofiler_Interface_0006 Test start*************'); console.log('************* DFX_DFR_Hiprofiler_Interface_0006 Test start*************');
try { try {
let timestamp = Date.now(); let timestamp = Date.now();
...@@ -134,7 +134,7 @@ describe('HidebugJsTest', function () { ...@@ -134,7 +134,7 @@ describe('HidebugJsTest', function () {
* @tc.name : startProfiling repeatedly * @tc.name : startProfiling repeatedly
* @tc.desc : Start CPU Profiling. * @tc.desc : Start CPU Profiling.
*/ */
it('DFX_DFR_Hiprofiler_Interface_0007', 0, function (done) { it('DFX_DFR_Hiprofiler_Interface_0007', 0, function () {
console.log('************* DFX_DFR_Hiprofiler_Interface_0007 Test start*************'); console.log('************* DFX_DFR_Hiprofiler_Interface_0007 Test start*************');
try { try {
let path1 = '/data/app/el2/100/base/com.hidebug.test/files/cpuprofiler-111.json' let path1 = '/data/app/el2/100/base/com.hidebug.test/files/cpuprofiler-111.json'
...@@ -161,7 +161,7 @@ describe('HidebugJsTest', function () { ...@@ -161,7 +161,7 @@ describe('HidebugJsTest', function () {
* @tc.name : startProfiling with empty parameter * @tc.name : startProfiling with empty parameter
* @tc.desc : Start CPU Profiling. * @tc.desc : Start CPU Profiling.
*/ */
it('DFX_DFR_Hiprofiler_Interface_0008', 0, function (done) { it('DFX_DFR_Hiprofiler_Interface_0008', 0, function () {
console.log('************* DFX_DFR_Hiprofiler_Interface_0008 Test start*************'); console.log('************* DFX_DFR_Hiprofiler_Interface_0008 Test start*************');
let path = '/data/app/el2/100/base/com.hidebug.test/files/undefined.json' let path = '/data/app/el2/100/base/com.hidebug.test/files/undefined.json'
try { try {
...@@ -188,7 +188,7 @@ describe('HidebugJsTest', function () { ...@@ -188,7 +188,7 @@ describe('HidebugJsTest', function () {
* @tc.name : startProfiling with overlong parameter * @tc.name : startProfiling with overlong parameter
* @tc.desc : Start CPU Profiling. * @tc.desc : Start CPU Profiling.
*/ */
it('DFX_DFR_Hiprofiler_Interface_0009', 0, function (done) { it('DFX_DFR_Hiprofiler_Interface_0009', 0, function () {
console.log('************* DFX_DFR_Hiprofiler_Interface_0009 Test start*************'); console.log('************* DFX_DFR_Hiprofiler_Interface_0009 Test start*************');
let path = '/data/app/el2/100/base/com.hidebug.test/files/undefined.json' let path = '/data/app/el2/100/base/com.hidebug.test/files/undefined.json'
try { try {
...@@ -219,7 +219,7 @@ describe('HidebugJsTest', function () { ...@@ -219,7 +219,7 @@ describe('HidebugJsTest', function () {
* @tc.name : dumpHeapData with normal parameter * @tc.name : dumpHeapData with normal parameter
* @tc.desc : Dump JS Virtual Machine Heap Snapshot. * @tc.desc : Dump JS Virtual Machine Heap Snapshot.
*/ */
it('DFX_DFR_Hiprofiler_Interface_0010', 0, function (done) { it('DFX_DFR_Hiprofiler_Interface_0010', 0, function () {
console.log('************* DFX_DFR_Hiprofiler_Interface_0010 Test start*************'); console.log('************* DFX_DFR_Hiprofiler_Interface_0010 Test start*************');
try { try {
let timestamp = Date.now(); let timestamp = Date.now();
...@@ -240,7 +240,7 @@ describe('HidebugJsTest', function () { ...@@ -240,7 +240,7 @@ describe('HidebugJsTest', function () {
* @tc.name : dumpHeapData with empty parameter * @tc.name : dumpHeapData with empty parameter
* @tc.desc : Dump JS Virtual Machine Heap Snapshot. * @tc.desc : Dump JS Virtual Machine Heap Snapshot.
*/ */
it('DFX_DFR_Hiprofiler_Interface_0011', 0, function (done) { it('DFX_DFR_Hiprofiler_Interface_0011', 0, function () {
console.log('************* DFX_DFR_Hiprofiler_Interface_0011 Test start*************'); console.log('************* DFX_DFR_Hiprofiler_Interface_0011 Test start*************');
let path = '/data/app/el2/100/base/com.hidebug.test/files/undefined.heapsnapshot' let path = '/data/app/el2/100/base/com.hidebug.test/files/undefined.heapsnapshot'
try { try {
...@@ -265,7 +265,7 @@ describe('HidebugJsTest', function () { ...@@ -265,7 +265,7 @@ describe('HidebugJsTest', function () {
* @tc.name : dumpHeapData with overlog parameter * @tc.name : dumpHeapData with overlog parameter
* @tc.desc : Dump JS Virtual Machine Heap Snapshot. * @tc.desc : Dump JS Virtual Machine Heap Snapshot.
*/ */
it('DFX_DFR_Hiprofiler_Interface_0012', 0, function (done) { it('DFX_DFR_Hiprofiler_Interface_0012', 0, function () {
console.log('************* DFX_DFR_Hiprofiler_Interface_0012 Test start*************'); console.log('************* DFX_DFR_Hiprofiler_Interface_0012 Test start*************');
let path = '/data/app/el2/100/base/com.hidebug.test/files/undefined.heapsnapshot' let path = '/data/app/el2/100/base/com.hidebug.test/files/undefined.heapsnapshot'
try { try {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册