]> gitweb.ps.run Git - ps-cgit/blobdiff - tests/t0106-diff.sh
tests: check that Git version are in sync
[ps-cgit] / tests / t0106-diff.sh
index e140bcc32f9887c259d17d616db2c98bbe12d7d1..eee0c8c10ed7e373f102275b991e719ddac215b1 100755 (executable)
@@ -5,16 +5,16 @@
 prepare_tests "Check content on diff page"
 
 run_test 'generate foo/diff' 'cgit_url "foo/diff" >trash/tmp'
-run_test 'find diff header' 'grep -e "a/file-5 b/file-5" trash/tmp'
-run_test 'find blob link' 'grep -e "<a href=./foo/tree/file-5?id=" trash/tmp'
-run_test 'find added file' 'grep -e "new file mode 100644" trash/tmp'
+run_test 'find diff header' 'grep "a/file-5 b/file-5" trash/tmp'
+run_test 'find blob link' 'grep "<a href=./foo/tree/file-5?id=" trash/tmp'
+run_test 'find added file' 'grep "new file mode 100644" trash/tmp'
 
 run_test 'find hunk header' '
-       grep -e "<div class=.hunk.>@@ -0,0 +1 @@</div>" trash/tmp
+       grep "<div class=.hunk.>@@ -0,0 +1 @@</div>" trash/tmp
 '
 
 run_test 'find added line' '
-       grep -e "<div class=.add.>+5</div>" trash/tmp
+       grep "<div class=.add.>+5</div>" trash/tmp
 '
 
 tests_done