aboutsummaryrefslogtreecommitdiffstats
path: root/tests/t0106-diff.sh
diff options
context:
space:
mode:
authorGravatar John Keeping <john@keeping.me.uk>2013-03-05 06:58:49 (JST)
committerGravatar Jason A. Donenfeld <Jason@zx2c4.com>2013-03-05 09:38:44 (JST)
commit392e07d28a23aec9942b9ed0d122e35d2d268fb9 (patch)
tree352b722bec1a02b47aa86f9285043982cfe70fbc /tests/t0106-diff.sh
parent78a24e5c55ac57efab90cf1e65b9af226b388a39 (diff)
downloadcgit-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>
Diffstat (limited to 'tests/t0106-diff.sh')
-rwxr-xr-xtests/t0106-diff.sh10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/t0106-diff.sh b/tests/t0106-diff.sh
index e140bcc..eee0c8c 100755
--- a/tests/t0106-diff.sh
+++ b/tests/t0106-diff.sh
@@ -5,16 +5,16 @@
5prepare_tests "Check content on diff page" 5prepare_tests "Check content on diff page"
6 6
7run_test 'generate foo/diff' 'cgit_url "foo/diff" >trash/tmp' 7run_test 'generate foo/diff' 'cgit_url "foo/diff" >trash/tmp'
8run_test 'find diff header' 'grep -e "a/file-5 b/file-5" trash/tmp' 8run_test 'find diff header' 'grep "a/file-5 b/file-5" trash/tmp'
9run_test 'find blob link' 'grep -e "<a href=./foo/tree/file-5?id=" trash/tmp' 9run_test 'find blob link' 'grep "<a href=./foo/tree/file-5?id=" trash/tmp'
10run_test 'find added file' 'grep -e "new file mode 100644" trash/tmp' 10run_test 'find added file' 'grep "new file mode 100644" trash/tmp'
11 11
12run_test 'find hunk header' ' 12run_test 'find hunk header' '
13 grep -e "<div class=.hunk.>@@ -0,0 +1 @@</div>" trash/tmp 13 grep "<div class=.hunk.>@@ -0,0 +1 @@</div>" trash/tmp
14' 14'
15 15
16run_test 'find added line' ' 16run_test 'find added line' '
17 grep -e "<div class=.add.>+5</div>" trash/tmp 17 grep "<div class=.add.>+5</div>" trash/tmp
18' 18'
19 19
20tests_done 20tests_done