在調(diào)試程序時(shí),希望輸出出錯(cuò)的信息,現(xiàn)在就來(lái)學(xué)習(xí)下幾種error message的寫法。
目前創(chuàng)新互聯(lián)公司已為1000多家的企業(yè)提供了網(wǎng)站建設(shè)、域名、虛擬空間、網(wǎng)站運(yùn)營(yíng)、企業(yè)網(wǎng)站設(shè)計(jì)、柳州網(wǎng)站維護(hù)等服務(wù),公司將堅(jiān)持客戶導(dǎo)向、應(yīng)用為本的策略,正道將秉承"和諧、參與、激情"的文化,與客戶和合作伙伴齊心協(xié)力一起成長(zhǎng),共同發(fā)展。1.在 testplan里添加自定義的message
在BT_basic里:
(1) get'testplan'
(2) find‘Eject_Ticket: p_w_picpath 13/'
在這行的下面輸入:
if boardfailed then
report is *
print is "dec/rpr1"
print " *****" //輸入自定義內(nèi)容
print "**** "
print is *
report is Report_printer$
end if
(3) re-save
然后再run
2.對(duì)于單個(gè)元件加 message:找到元件的library,在測(cè)試程序前面添加
on failure
report " ***"
end on failure
再保存編譯就好了。
3.在shorts里添加error message,有兩種方法:
(1) 在shorts文件的最前面加上: report common devices (列出所有共同的組件)
再執(zhí)行 re-save | comp' shorts' | debug shorts | exe to fail
(2) 在shorts前面加上 :report limit # ,其中# 指當(dāng)有error時(shí),列出的大數(shù),自己設(shè)置的值。可用來(lái)限制故障報(bào)告時(shí)間。