chiark
/
gitweb
/
~mdw
/
stgit
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Add 'pick' test script
[stgit]
/
t
/
t1202-push-undo.sh
diff --git
a/t/t1202-push-undo.sh
b/t/t1202-push-undo.sh
index 51ae138dea4d603e1be9dbd587da772b8aeb5054..79439deae584099c5dad527c660c0eee4eca8ca7 100755
(executable)
--- a/
t/t1202-push-undo.sh
+++ b/
t/t1202-push-undo.sh
@@
-3,10
+3,10
@@
# Copyright (c) 2006 Catalin Marinas
#
# Copyright (c) 2006 Catalin Marinas
#
-test_description='Exercise
push --undo with
missing files.
+test_description='Exercise
stg undo with push of
missing files.
Test the case where a patch fails to be pushed because it modifies a
Test the case where a patch fails to be pushed because it modifies a
-missing file. The "
push --
undo" command has to be able to revert it.
+missing file. The "
stg
undo" command has to be able to revert it.
'
. ./test-lib.sh
'
. ./test-lib.sh
@@
-21,7
+21,7
@@
test_expect_success \
'
stg new foo -m foo &&
echo foo > test &&
'
stg new foo -m foo &&
echo foo > test &&
-
stg
add test &&
+
git
add test &&
stg refresh
'
stg refresh
'
@@
-30,7
+30,7
@@
test_expect_success \
'
stg new bar -m bar &&
echo bar > test &&
'
stg new bar -m bar &&
echo bar > test &&
-
stg
add test &&
+
git
add test &&
stg refresh
'
stg refresh
'
@@
-43,19
+43,28
@@
test_expect_success \
test_expect_success \
'Push the second patch with conflict' \
'
test_expect_success \
'Push the second patch with conflict' \
'
-
!
stg push bar
+
conflict_old
stg push bar
'
test_expect_success \
'Undo the previous push' \
'
'
test_expect_success \
'Undo the previous push' \
'
- stg
push --undo
+ stg
undo --hard
'
test_expect_success \
'Check the push after undo fails as well' \
'
'
test_expect_success \
'Check the push after undo fails as well' \
'
- ! stg push bar
+ conflict_old stg push bar
+ '
+
+test_expect_success \
+ 'Undo with disappeared newborn' \
+ '
+ touch newfile &&
+ git add newfile &&
+ rm newfile &&
+ stg undo --hard
'
test_done
'
test_done