X-Git-Url: https://git.distorted.org.uk/~mdw/stgit/blobdiff_plain/53f76663a55fc98d43d283dbef2306aac880d771..48c930db6aaa1559f0d25030c0a9691170fe715c:/t/t1200-push-modified.sh diff --git a/t/t1200-push-modified.sh b/t/t1200-push-modified.sh index 7847a38..2edc760 100755 --- a/t/t1200-push-modified.sh +++ b/t/t1200-push-modified.sh @@ -19,22 +19,26 @@ specify --merged, then rollback and retry with the correct flag.' test_create_repo foo test_expect_success \ - 'Clone tree and setup changes' \ - "stg clone foo bar && - (cd bar && stg new p1 -m p1 - printf 'a\nc\n' > file && stg add file && stg refresh && - stg new p2 -m p2 - printf 'a\nb\nc\n' > file && stg refresh - ) -" + 'Clone tree and setup changes' ' + stg clone foo bar && + ( + cd bar && stg new p1 -m p1 && + printf "a\nc\n" > file && git add file && stg refresh && + stg new p2 -m p2 && + printf "a\nb\nc\n" > file && stg refresh && + [ "$(echo $(stg applied))" = "p1 p2" ] && + [ "$(echo $(stg unapplied))" = "" ] + ) +' test_expect_success \ - 'Port those patches to orig tree' \ - "(cd foo && - GIT_DIR=../bar/.git git-format-patch --stdout bases/master..HEAD | - git-am -3 -k - ) -" + 'Port those patches to orig tree' ' + ( + cd foo && + GIT_DIR=../bar/.git git-format-patch --stdout \ + $(cd ../bar && stg id master:{base})..HEAD | git-am -3 -k + ) +' test_expect_success \ 'Pull to sync with parent, preparing for the problem' \ @@ -43,22 +47,28 @@ test_expect_success \ ) " -test_expect_failure \ +test_expect_success \ 'Attempt to push the first of those patches without --merged' \ - "(cd bar && stg push + "(cd bar && conflict_old stg push ) " test_expect_success \ - 'Rollback the push' \ - "(cd bar && stg push --undo - ) -" + 'Rollback the push' ' + ( + cd bar && stg push --undo && + [ "$(echo $(stg applied))" = "" ] && + [ "$(echo $(stg unapplied))" = "p1 p2" ] + ) +' test_expect_success \ - 'Push those patches while checking they were merged upstream' \ - "(cd bar && stg push --merged --all - ) -" + 'Push those patches while checking they were merged upstream' ' + ( + cd bar && stg push --merged --all + [ "$(echo $(stg applied))" = "p1 p2" ] && + [ "$(echo $(stg unapplied))" = "" ] + ) +' test_done