📄 testa7e.sh
字号:
################################################################################ UNIT TEST A7e FOR kocos.pl################################################################################ Test A7e - Checks if the program shows right message when # no co-occurrences occur at the specified order# and when co-occurrence graph has a zigzag form # Input - test-A7.count# Output - test-A7e.reqdecho "UNIT Test A7e -";echo " For kth order co-occurrence program kocos.pl";echo "Input - Source file from test-A7.count";echo "Output - Destination file from test-A7e.reqd";echo "Test - Checks if the program shows right message when";echo " no co-occurrences occur at the specified order"; #=============================================================================# INPUT#=============================================================================set TestInput="test-A7.count";set Actual="test-A7e.reqd";#=============================================================================# RUN THE PROGRAM#============================================================================= kocos.pl --literal line --order 5 $TestInput > test-A7e.output#=============================================================================# SORT THE RESULTS AND COMPARE#=============================================================================sort test-A7e.output > t1sort $Actual > t2diff -w t1 t2 > variance#=============================================================================# RESULTS OF TESTA7e#=============================================================================if(-z variance) then echo "STATUS : OK Test Results Match.....";else echo "STATUS : ERROR Test Results don't Match...."; echo " When Tested Against $Actual - "; cat varianceendifecho ""/bin/rm -f t1 t2 variance#############################################################################
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -