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:
Johannes Sixt
2008-11-07 15:02:10 +01:00
parent 1597f26fcc
commit 226c37e6fc

View File

@@ -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) &&