diff options
author | yar <yar@FreeBSD.org> | 2007-04-02 08:20:43 +0000 |
---|---|---|
committer | yar <yar@FreeBSD.org> | 2007-04-02 08:20:43 +0000 |
commit | acf53302f1fd9ae2e8d42857a0a332f9feb703ae (patch) | |
tree | dce1f609f0fe95f86023b073b52f423b504f6f60 /tools | |
parent | d1f2d71a20a71a7677a23d9186db3bcf9732ae91 (diff) | |
download | FreeBSD-src-acf53302f1fd9ae2e8d42857a0a332f9feb703ae.zip FreeBSD-src-acf53302f1fd9ae2e8d42857a0a332f9feb703ae.tar.gz |
Logically separate the complex `hanoi' and `math' tests from basic tests.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/regression/usr.bin/sed/regress.sh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tools/regression/usr.bin/sed/regress.sh b/tools/regression/usr.bin/sed/regress.sh index 5e06b11..a99e7ba 100644 --- a/tools/regression/usr.bin/sed/regress.sh +++ b/tools/regression/usr.bin/sed/regress.sh @@ -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() |