testa14d.sh

来自「N元组统计程序源代码」· Shell 代码 · 共 58 行

SH
58
字号
################################################################################				UNIT TEST A14d FOR kocos.pl################################################################################       Test A14d  -    Checks if the program finds correct 4th order #			co-occurrences when target word is /\d/ and#			data contains some weird characters#	Input	-	test-A14.count#	Output	-	test-A14d.reqdecho "UNIT Test A14d -";echo "		For kth order co-occurrence program kocos.pl";echo "Input - 	Source file from test-A14.count";echo "Output - 	Destination file from test-A14d.reqd";echo "Test -    	Checks if the program finds correct 4th order";echo "		co-occurrences when the target word is /\d/ and data";echo "		contains some weird characters.";#=============================================================================#				INPUT#=============================================================================set TestInput="test-A14.count";set Actual="test-A14d.reqd";#=============================================================================#				RUN THE PROGRAM#============================================================================= kocos.pl --regex test-A14.regex --order 4 $TestInput > test-A14d.output#=============================================================================#				SORT THE RESULTS AND COMPARE#=============================================================================sort test-A14d.output > t1sort $Actual > t2diff -w t1 t2 > variance1#=============================================================================#				RESULTS OF TESTA14d#=============================================================================if(-z variance1) then        echo "STATUS : 	OK Test Results Match.....";else	echo "STATUS : 	ERROR Test Results don't Match....";	echo "		When Tested for --regex test-A14.regex";        cat variance1endifecho ""/bin/rm -f t1 t2 variance1 #############################################################################

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?