mirror of
https://github.com/git/git.git
synced 2026-03-13 10:23:30 +01:00
Revert "t3903: Mark tests as broken on MinGW"
This reverts commit fe3238dc4c,
which worked around the bug that stash@{1} was not transfered correctly
down the command invocation chain. But this bug was fixed later, so
this workaround is not necessary anymore.
This commit is contained in:
@@ -88,11 +88,7 @@ test_expect_success 'drop top stash' '
|
||||
test 1 = $(git show HEAD:file)
|
||||
'
|
||||
|
||||
case $(uname -s) in
|
||||
*MINGW*) test_expect=test_expect_failure;;
|
||||
*) test_expect=test_expect_success;;
|
||||
esac
|
||||
$test_expect 'drop middle stash' '
|
||||
test_expect_success 'drop middle stash' '
|
||||
git reset --hard &&
|
||||
echo 8 > file &&
|
||||
git stash &&
|
||||
@@ -112,11 +108,7 @@ $test_expect 'drop middle stash' '
|
||||
test 1 = $(git show HEAD:file)
|
||||
'
|
||||
|
||||
case $(uname -s) in
|
||||
*MINGW*) test_expect=test_expect_failure;;
|
||||
*) test_expect=test_expect_success;;
|
||||
esac
|
||||
$test_expect 'stash pop' '
|
||||
test_expect_success 'stash pop' '
|
||||
git reset --hard &&
|
||||
git stash pop &&
|
||||
test 3 = $(cat file) &&
|
||||
|
||||
Reference in New Issue
Block a user