📄 testa1.sh
字号:
################################################################################ INTEGRATION TEST A1 FOR count.pl and kocos.pl################################################################################ Test A1 - Checks for the compatibility between the programs# count and kocos# Input - # To count- test-A1.in# To kocos - test-A1.out# Output - test-A1[a-d].reqdecho "Integrated Test A1 -";echo " For NSP program count.pl and kocos.pl";echo "Input - ";echo "To count - Source file from test-A1.in";echo "To kocos - test-A1.out";echo "Output - Destination file from test-A1[a-d].reqd";echo "Test - Checks for the compatibility between the programs"; echo " count.pl and kocos.pl for different orders";#=============================================================================# INPUT#=============================================================================set TestInput="test-A1.in";#=============================================================================# RUN THE PROGRAM#=============================================================================echo "running count.pl";count.pl --newLine test-A1.out $TestInput echo "running kocos with order = 1";kocos.pl --literal line test-A1.out > test-A1a.outputecho "running kocos with order = 2";kocos.pl --literal line --order 2 test-A1.out > test-A1b.outputecho "running kocos with order = 3";kocos.pl --literal line --order 3 test-A1.out > test-A1c.outputecho "running kocos with order = 4";kocos.pl --literal line --order 4 test-A1.out > test-A1d.output#=============================================================================# SORT THE RESULTS AND COMPARE#=============================================================================sort test-A1a.output > t1sort test-A1a.reqd > t2diff -w t1 t2 > variance1sort test-A1b.output > t3sort test-A1b.reqd > t4diff -w t4 t3 > variance2sort test-A1c.output > t5sort test-A1c.reqd > t6diff -w t5 t6 > variance3sort test-A1d.output > t7sort test-A1d.reqd > t8diff -w t7 t8 > variance4#=============================================================================# RESULTS OF TESTA1#=============================================================================if(-z variance1 && -z variance2 && -z variance3 && -z variance4) then echo "STATUS : OK Test Results Match.....";else echo "STATUS : ERROR Test Results don't Match...."; echo "When Tested Against test-A1a.reqd - "; cat variance1 echo "When Tested Against KEY file test-A1b.reqd - "; cat variance2 echo "When Tested Against KEY file test-A1c.reqd - "; cat variance3 echo "When Tested Against KEY file test-A1d.reqd - "; cat variance4endifecho ""/bin/rm -f t1 t2 variance1 t3 t4 variance2 filename t5 variance3 variance4 t6 t7 t8 test-A1.out#############################################################################
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -