Add a test case for sed(1) regression - we should not ignore case

when not being asked to do so.

Approved by:	re (hrs)
This commit is contained in:
Xin LI 2007-07-06 16:36:52 +00:00
parent 870945d830
commit 68b843a591
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=171285
2 changed files with 5 additions and 0 deletions

View File

@ -0,0 +1,4 @@
input
data
for validation
of sed(1)

View File

@ -65,6 +65,7 @@ REGRESSION_TEST_FREEFORM(`inplace5', `inplace_test "3x;6G"')
REGRESSION_TEST(`icase1', `sed /SED/Id < regress.in')
REGRESSION_TEST(`icase2', `sed s/SED/Foo/I < regress.in')
REGRESSION_TEST(`icase3', `sed s/SED/Foo/ < 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')