diff options
author | 2013-03-05 06:58:49 (JST) | |
---|---|---|
committer | 2013-03-05 09:38:44 (JST) | |
commit | 392e07d28a23aec9942b9ed0d122e35d2d268fb9 (patch) | |
tree | 352b722bec1a02b47aa86f9285043982cfe70fbc | |
parent | 78a24e5c55ac57efab90cf1e65b9af226b388a39 (diff) | |
download | cgit-392e07d28a23aec9942b9ed0d122e35d2d268fb9.zip cgit-392e07d28a23aec9942b9ed0d122e35d2d268fb9.tar.gz |
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>
-rwxr-xr-x | tests/t0101-index.sh | 18 | ||||
-rwxr-xr-x | tests/t0102-summary.sh | 22 | ||||
-rwxr-xr-x | tests/t0103-log.sh | 20 | ||||
-rwxr-xr-x | tests/t0104-tree.sh | 12 | ||||
-rwxr-xr-x | tests/t0105-commit.sh | 12 | ||||
-rwxr-xr-x | tests/t0106-diff.sh | 10 | ||||
-rwxr-xr-x | tests/t0107-snapshot.sh | 6 | ||||
-rwxr-xr-x | tests/t0108-patch.sh | 10 |
8 files changed, 55 insertions, 55 deletions
diff --git a/tests/t0101-index.sh b/tests/t0101-index.sh index 573a351..ab63aca 100755 --- a/tests/t0101-index.sh +++ b/tests/t0101-index.sh | |||
@@ -5,14 +5,14 @@ | |||
5 | prepare_tests "Check content on index page" | 5 | prepare_tests "Check content on index page" |
6 | 6 | ||
7 | run_test 'generate index page' 'cgit_url "" >trash/tmp' | 7 | run_test 'generate index page' 'cgit_url "" >trash/tmp' |
8 | run_test 'find foo repo' 'grep -e "foo" trash/tmp' | 8 | run_test 'find foo repo' 'grep "foo" trash/tmp' |
9 | run_test 'find foo description' 'grep -e "\[no description\]" trash/tmp' | 9 | run_test 'find foo description' 'grep "\[no description\]" trash/tmp' |
10 | run_test 'find bar repo' 'grep -e "bar" trash/tmp' | 10 | run_test 'find bar repo' 'grep "bar" trash/tmp' |
11 | run_test 'find bar description' 'grep -e "the bar repo" trash/tmp' | 11 | run_test 'find bar description' 'grep "the bar repo" trash/tmp' |
12 | run_test 'find foo+bar repo' 'grep -e ">foo+bar<" trash/tmp' | 12 | run_test 'find foo+bar repo' 'grep ">foo+bar<" trash/tmp' |
13 | run_test 'verify foo+bar link' 'grep -e "/foo+bar/" trash/tmp' | 13 | run_test 'verify foo+bar link' 'grep "/foo+bar/" trash/tmp' |
14 | run_test 'verify "with%20space" link' 'grep -e "/with%20space/" trash/tmp' | 14 | run_test 'verify "with%20space" link' 'grep "/with%20space/" trash/tmp' |
15 | run_test 'no tree-link' '! grep -e "foo/tree" trash/tmp' | 15 | run_test 'no tree-link' '! grep "foo/tree" trash/tmp' |
16 | run_test 'no log-link' '! grep -e "foo/log" trash/tmp' | 16 | run_test 'no log-link' '! grep "foo/log" trash/tmp' |
17 | 17 | ||
18 | tests_done | 18 | tests_done |
diff --git a/tests/t0102-summary.sh b/tests/t0102-summary.sh index f299c5a..f778cb4 100755 --- a/tests/t0102-summary.sh +++ b/tests/t0102-summary.sh | |||
@@ -5,22 +5,22 @@ | |||
5 | prepare_tests "Check content on summary page" | 5 | prepare_tests "Check content on summary page" |
6 | 6 | ||
7 | run_test 'generate foo summary' 'cgit_url "foo" >trash/tmp' | 7 | run_test 'generate foo summary' 'cgit_url "foo" >trash/tmp' |
8 | run_test 'find commit 1' 'grep -e "commit 1" trash/tmp' | 8 | run_test 'find commit 1' 'grep "commit 1" trash/tmp' |
9 | run_test 'find commit 5' 'grep -e "commit 5" trash/tmp' | 9 | run_test 'find commit 5' 'grep "commit 5" trash/tmp' |
10 | run_test 'find branch master' 'grep -e "master" trash/tmp' | 10 | run_test 'find branch master' 'grep "master" trash/tmp' |
11 | run_test 'no tags' '! grep -e "tags" trash/tmp' | 11 | run_test 'no tags' '! grep "tags" trash/tmp' |
12 | run_test 'clone-url expanded correctly' ' | 12 | run_test 'clone-url expanded correctly' ' |
13 | grep -e "git://example.org/foo.git" trash/tmp | 13 | grep "git://example.org/foo.git" trash/tmp |
14 | ' | 14 | ' |
15 | 15 | ||
16 | run_test 'generate bar summary' 'cgit_url "bar" >trash/tmp' | 16 | run_test 'generate bar summary' 'cgit_url "bar" >trash/tmp' |
17 | run_test 'no commit 45' '! grep -e "commit 45" trash/tmp' | 17 | run_test 'no commit 45' '! grep "commit 45" trash/tmp' |
18 | run_test 'find commit 46' 'grep -e "commit 46" trash/tmp' | 18 | run_test 'find commit 46' 'grep "commit 46" trash/tmp' |
19 | run_test 'find commit 50' 'grep -e "commit 50" trash/tmp' | 19 | run_test 'find commit 50' 'grep "commit 50" trash/tmp' |
20 | run_test 'find branch master' 'grep -e "master" trash/tmp' | 20 | run_test 'find branch master' 'grep "master" trash/tmp' |
21 | run_test 'no tags' '! grep -e "tags" trash/tmp' | 21 | run_test 'no tags' '! grep "tags" trash/tmp' |
22 | run_test 'clone-url expanded correctly' ' | 22 | run_test 'clone-url expanded correctly' ' |
23 | grep -e "git://example.org/bar.git" trash/tmp | 23 | grep "git://example.org/bar.git" trash/tmp |
24 | ' | 24 | ' |
25 | 25 | ||
26 | tests_done | 26 | tests_done |
diff --git a/tests/t0103-log.sh b/tests/t0103-log.sh index 7fa6754..67fcba0 100755 --- a/tests/t0103-log.sh +++ b/tests/t0103-log.sh | |||
@@ -5,21 +5,21 @@ | |||
5 | prepare_tests "Check content on log page" | 5 | prepare_tests "Check content on log page" |
6 | 6 | ||
7 | run_test 'generate foo/log' 'cgit_url "foo/log" >trash/tmp' | 7 | run_test 'generate foo/log' 'cgit_url "foo/log" >trash/tmp' |
8 | run_test 'find commit 1' 'grep -e "commit 1" trash/tmp' | 8 | run_test 'find commit 1' 'grep "commit 1" trash/tmp' |
9 | run_test 'find commit 5' 'grep -e "commit 5" trash/tmp' | 9 | run_test 'find commit 5' 'grep "commit 5" trash/tmp' |
10 | 10 | ||
11 | run_test 'generate bar/log' 'cgit_url "bar/log" >trash/tmp' | 11 | run_test 'generate bar/log' 'cgit_url "bar/log" >trash/tmp' |
12 | run_test 'find commit 1' 'grep -e "commit 1" trash/tmp' | 12 | run_test 'find commit 1' 'grep "commit 1" trash/tmp' |
13 | run_test 'find commit 50' 'grep -e "commit 50" trash/tmp' | 13 | run_test 'find commit 50' 'grep "commit 50" trash/tmp' |
14 | 14 | ||
15 | run_test 'generate "with%20space/log?qt=grep&q=commit+1"' ' | 15 | run_test 'generate "with%20space/log?qt=grep&q=commit+1"' ' |
16 | cgit_url "with+space/log&qt=grep&q=commit+1" >trash/tmp | 16 | cgit_url "with+space/log&qt=grep&q=commit+1" >trash/tmp |
17 | ' | 17 | ' |
18 | run_test 'find commit 1' 'grep -e "commit 1" trash/tmp' | 18 | run_test 'find commit 1' 'grep "commit 1" trash/tmp' |
19 | run_test 'find link with %20 in path' 'grep -e "/with%20space/log/?qt=grep" trash/tmp' | 19 | run_test 'find link with %20 in path' 'grep "/with%20space/log/?qt=grep" trash/tmp' |
20 | run_test 'find link with + in arg' 'grep -e "/log/?qt=grep&q=commit+1" trash/tmp' | 20 | run_test 'find link with + in arg' 'grep "/log/?qt=grep&q=commit+1" trash/tmp' |
21 | run_test 'no links with space in path' '! grep -e "href=./with space/" trash/tmp' | 21 | run_test 'no links with space in path' '! grep "href=./with space/" trash/tmp' |
22 | run_test 'no links with space in arg' '! grep -e "q=commit 1" trash/tmp' | 22 | run_test 'no links with space in arg' '! grep "q=commit 1" trash/tmp' |
23 | run_test 'commit 2 is not visible' '! grep -e "commit 2" trash/tmp' | 23 | run_test 'commit 2 is not visible' '! grep "commit 2" trash/tmp' |
24 | 24 | ||
25 | tests_done | 25 | tests_done |
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 @@ | |||
5 | prepare_tests "Check content on tree page" | 5 | prepare_tests "Check content on tree page" |
6 | 6 | ||
7 | run_test 'generate bar/tree' 'cgit_url "bar/tree" >trash/tmp' | 7 | run_test 'generate bar/tree' 'cgit_url "bar/tree" >trash/tmp' |
8 | run_test 'find file-1' 'grep -e "file-1" trash/tmp' | 8 | run_test 'find file-1' 'grep "file-1" trash/tmp' |
9 | run_test 'find file-50' 'grep -e "file-50" trash/tmp' | 9 | run_test 'find file-50' 'grep "file-50" trash/tmp' |
10 | 10 | ||
11 | run_test 'generate bar/tree/file-50' 'cgit_url "bar/tree/file-50" >trash/tmp' | 11 | run_test 'generate bar/tree/file-50' 'cgit_url "bar/tree/file-50" >trash/tmp' |
12 | 12 | ||
13 | run_test 'find line 1' ' | 13 | run_test 'find line 1' ' |
14 | grep -e "<a class=.no. id=.n1. name=.n1. href=.#n1.>1</a>" trash/tmp | 14 | grep "<a class=.no. id=.n1. name=.n1. href=.#n1.>1</a>" trash/tmp |
15 | ' | 15 | ' |
16 | 16 | ||
17 | run_test 'no line 2' ' | 17 | run_test 'no line 2' ' |
18 | ! grep -e "<a class=.no. id=.n2. name=.n2. href=.#n2.>2</a>" trash/tmp | 18 | ! grep "<a class=.no. id=.n2. name=.n2. href=.#n2.>2</a>" trash/tmp |
19 | ' | 19 | ' |
20 | 20 | ||
21 | run_test 'generate foo+bar/tree' 'cgit_url "foo%2bbar/tree" >trash/tmp' | 21 | run_test 'generate foo+bar/tree' 'cgit_url "foo%2bbar/tree" >trash/tmp' |
22 | 22 | ||
23 | run_test 'verify a+b link' ' | 23 | run_test 'verify a+b link' ' |
24 | grep -e "/foo+bar/tree/a+b" trash/tmp | 24 | grep "/foo+bar/tree/a+b" trash/tmp |
25 | ' | 25 | ' |
26 | 26 | ||
27 | run_test 'generate foo+bar/tree?h=1+2' 'cgit_url "foo%2bbar/tree&h=1%2b2" >trash/tmp' | 27 | run_test 'generate foo+bar/tree?h=1+2' 'cgit_url "foo%2bbar/tree&h=1%2b2" >trash/tmp' |
28 | 28 | ||
29 | run_test 'verify a+b?h=1+2 link' ' | 29 | run_test 'verify a+b?h=1+2 link' ' |
30 | grep -e "/foo+bar/tree/a+b?h=1%2b2" trash/tmp | 30 | grep "/foo+bar/tree/a+b?h=1%2b2" trash/tmp |
31 | ' | 31 | ' |
32 | 32 | ||
33 | tests_done | 33 | tests_done |
diff --git a/tests/t0105-commit.sh b/tests/t0105-commit.sh index ae794c8..19a650b 100755 --- a/tests/t0105-commit.sh +++ b/tests/t0105-commit.sh | |||
@@ -5,18 +5,18 @@ | |||
5 | prepare_tests "Check content on commit page" | 5 | prepare_tests "Check content on commit page" |