Logically separate the complex hanoi' and math' tests from basic tests.

This commit is contained in:
Yaroslav Tykhiy 2007-04-02 08:20:43 +00:00
parent e9a0eed451
commit 78e7d37750
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=168259

View File

@ -13,8 +13,6 @@ REGRESSION_TEST(`sg', `echo foo | sed s/,*/,/g')
REGRESSION_TEST(`s3', `echo foo | sed s/,*/,/3')
REGRESSION_TEST(`s4', `echo foo | sed s/,*/,/4')
REGRESSION_TEST(`s5', `echo foo | sed s/,*/,/5')
REGRESSION_TEST(`hanoi', `echo ":abcd: : :" | sed -f hanoi.sed')
REGRESSION_TEST(`math', `echo "4+7*3+2^7/3" | sed -f math.sed')
REGRESSION_TEST(`c0', `sed ''`c\
foo
''`< regress.in')
@ -30,4 +28,7 @@ foo
REGRESSION_TEST(`b2a', `sed ''`2,3b
1,2d''` < regress.in')
REGRESSION_TEST(`hanoi', `echo ":abcd: : :" | sed -f hanoi.sed')
REGRESSION_TEST(`math', `echo "4+7*3+2^7/3" | sed -f math.sed')
REGRESSION_END()