📄 testa15a.sh
字号:
################################################################################ UNIT TEST A15a FOR kocos.pl################################################################################ Test A15a - Checks if the program finds correct 1st order # co-occurrences when each tokens is a bigram# Input - test-A15.count# Output - test-A15a.reqdecho "UNIT Test A15a -";echo " For kth order co-occurrence program kocos.pl";echo "Input - Source file from test-A15.count";echo "Output - Destination file from test-A15a.reqd";echo "Test - Checks if the program finds correct 1st order";echo " co-occurrences when each token is a bigram.";#=============================================================================# INPUT#=============================================================================set TestInput="test-A15.count";set Actual="test-A15a.reqd";#=============================================================================# RUN THE PROGRAM#============================================================================= kocos.pl --literal "alan bond" $TestInput > test-A15a1.output kocos.pl --regex test-A15.regex $TestInput > test-A15a2.output#=============================================================================# SORT THE RESULTS AND COMPARE#=============================================================================sort test-A15a1.output > t1sort $Actual > t2diff -w t1 t2 > variance1sort test-A15a2.output > t1diff -w t1 t2 > variance2#=============================================================================# RESULTS OF TESTA15a#=============================================================================if(-z variance1 && -z variance2) then echo "STATUS : OK Test Results Match.....";else echo "STATUS : ERROR Test Results don't Match...."; echo " When Tested for --literal "alan bond" "; cat variance1 echo " When Tested for --regex test-A15.regex "; cat variance2endifecho ""/bin/rm -f t1 t2 variance1 variance2#############################################################################
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -