summaryrefslogtreecommitdiff
path: root/t/t3903-stash.sh
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2019-12-01 17:04:37 (GMT)
committerJunio C Hamano <gitster@pobox.com>2019-12-01 17:04:37 (GMT)
commit3c3e5d0ea2158bdc4f2244adff08504e50653d7c (patch)
tree287ce5f51018446e1a3669dd39b96fdbfdb157a5 /t/t3903-stash.sh
parent43c5fe1c1d9435b60277b38e8b52a29c635cff9a (diff)
parentdf53c80822735ddd30638ba77be3face438d5ad8 (diff)
downloadgit-3c3e5d0ea2158bdc4f2244adff08504e50653d7c.zip
git-3c3e5d0ea2158bdc4f2244adff08504e50653d7c.tar.gz
git-3c3e5d0ea2158bdc4f2244adff08504e50653d7c.tar.bz2
Merge branch 'tg/stash-refresh-index'
Recent update to "git stash pop" made the command empty the index when run with the "--quiet" option, which has been corrected. * tg/stash-refresh-index: stash: make sure we have a valid index before writing it
Diffstat (limited to 't/t3903-stash.sh')
-rwxr-xr-xt/t3903-stash.sh7
1 files changed, 6 insertions, 1 deletions
diff --git a/t/t3903-stash.sh b/t/t3903-stash.sh
index a4da72f..ea56e85 100755
--- a/t/t3903-stash.sh
+++ b/t/t3903-stash.sh
@@ -244,8 +244,11 @@ test_expect_success 'save -q is quiet' '
test_must_be_empty output.out
'
-test_expect_success 'pop -q is quiet' '
+test_expect_success 'pop -q works and is quiet' '
git stash pop -q >output.out 2>&1 &&
+ echo bar >expect &&
+ git show :file >actual &&
+ test_cmp expect actual &&
test_must_be_empty output.out
'
@@ -254,6 +257,8 @@ test_expect_success 'pop -q --index works and is quiet' '
git add file &&
git stash save --quiet &&
git stash pop -q --index >output.out 2>&1 &&
+ git diff-files file2 >file2.diff &&
+ test_must_be_empty file2.diff &&
test foo = "$(git show :file)" &&
test_must_be_empty output.out
'