Merge branch 'jc/maint-unpack-objects-strict' into maint
[gitweb.git] / t / t7002-grep.sh
index b13aa7e89ad51566979ab674baa2ac36c7e33da6..6ca11d71465aa609232614bbbd360955869e0776 100755 (executable)
@@ -279,4 +279,21 @@ test_expect_success 'grep -p -B5' '
        test_cmp expected actual
 '
 
+test_expect_success 'grep from a subdirectory to search wider area (1)' '
+       mkdir -p s &&
+       (
+               cd s && git grep "x x x" ..
+       )
+'
+
+test_expect_success 'grep from a subdirectory to search wider area (2)' '
+       mkdir -p s &&
+       (
+               cd s || exit 1
+               ( git grep xxyyzz .. >out ; echo $? >status )
+               ! test -s out &&
+               test 1 = $(cat status)
+       )
+'
+
 test_done