Lines Matching defs:error
83 const ret = {total: 0, failure: 0, error: 0, pass: 0, ignore: 0, duration: 0};
91 const retResult = {total: 0, failure: 0, error: 0, pass: 0, ignore: 0, duration: 0};
100 `\n${PrintTag.OHOS_REPORT_ALL_RESULT}: stream=Test run: runTimes: ${ret.total},total: ${retResult.total}, Failure: ${retResult.failure}, Error: ${retResult.error}, Pass: ${retResult.pass}, Ignore: ${retResult.ignore}` +
101 `\n${PrintTag.OHOS_REPORT_ALL_CODE}: ${retResult.failure > 0 || retResult.error > 0 ? -1 : 0}` +
107 console.info(`${TAG}, [end] error you worker test, ${JSON.stringify(e)}`);
108 abilityDelegator.finishTest('you worker test error finished!!!', 0, () => {});
130 console.info(`${TAG}, worker error, ${JSON.stringify(e)}`);
135 console.info(`${TAG}, worker message error, ${JSON.stringify(e)}`);
144 for (const {total, failure, error, pass, ignore, duration, itItemList} of items) {
147 ret.error += error;
160 // 当在worker中出现一次failure就标记为failure, 出现一次error就标记为error, 所有线程都pass才标记为pass
183 retResult.error ++;