diff options
author | John Keeping <john@keeping.me.uk> | 2013-03-05 01:58:49 +0400 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2013-03-05 04:38:44 +0400 |
commit | 392e07d28a23aec9942b9ed0d122e35d2d268fb9 (patch) | |
tree | 352b722bec1a02b47aa86f9285043982cfe70fbc /tests/t0104-tree.sh | |
parent | 78a24e5c55ac57efab90cf1e65b9af226b388a39 (diff) |
tests: "grep -e" is not portable to all platforms
The "-e" option to grep is not needed unless specifying more than one
pattern, which we don't do. Remove it to avoid restricting the tests on
platforms that do not have a grep that recognises "-e".
Signed-off-by: John Keeping <john@keeping.me.uk>
Diffstat (limited to 'tests/t0104-tree.sh')
-rwxr-xr-x | tests/t0104-tree.sh | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/t0104-tree.sh b/tests/t0104-tree.sh index 2ce1251..7aa3b8d 100755 --- a/tests/t0104-tree.sh +++ b/tests/t0104-tree.sh @@ -5,29 +5,29 @@ prepare_tests "Check content on tree page" run_test 'generate bar/tree' 'cgit_url "bar/tree" >trash/tmp' -run_test 'find file-1' 'grep -e "file-1" trash/tmp' -run_test 'find file-50' 'grep -e "file-50" trash/tmp' +run_test 'find file-1' 'grep "file-1" trash/tmp' +run_test 'find file-50' 'grep "file-50" trash/tmp' run_test 'generate bar/tree/file-50' 'cgit_url "bar/tree/file-50" >trash/tmp' run_test 'find line 1' ' - grep -e "<a class=.no. id=.n1. name=.n1. href=.#n1.>1</a>" trash/tmp + grep "<a class=.no. id=.n1. name=.n1. href=.#n1.>1</a>" trash/tmp ' run_test 'no line 2' ' - ! grep -e "<a class=.no. id=.n2. name=.n2. href=.#n2.>2</a>" trash/tmp + ! grep "<a class=.no. id=.n2. name=.n2. href=.#n2.>2</a>" trash/tmp ' run_test 'generate foo+bar/tree' 'cgit_url "foo%2bbar/tree" >trash/tmp' run_test 'verify a+b link' ' - grep -e "/foo+bar/tree/a+b" trash/tmp + grep "/foo+bar/tree/a+b" trash/tmp ' run_test 'generate foo+bar/tree?h=1+2' 'cgit_url "foo%2bbar/tree&h=1%2b2" >trash/tmp' run_test 'verify a+b?h=1+2 link' ' - grep -e "/foo+bar/tree/a+b?h=1%2b2" trash/tmp + grep "/foo+bar/tree/a+b?h=1%2b2" trash/tmp ' tests_done |