summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Jackson <ijackson@chiark.greenend.org.uk>2016-09-21 21:19:46 +0100
committerIan Jackson <ijackson@chiark.greenend.org.uk>2016-09-26 01:16:58 +0100
commit25f10ec62284ba2b0a3c21ee9c61b9cdddaf9002 (patch)
tree06c4731baad7411a734bdea35b220641ffb1208c
parent86c44593c1e834384749f81b89b99c5a865b4627 (diff)
Test suite: oldnewtagalt: New test
Signed-off-by: Ian Jackson <ijackson@chiark.greenend.org.uk>
-rw-r--r--TODO.BRANCH5
-rw-r--r--debian/tests/control2
-rwxr-xr-xtests/tests/oldnewtagalt25
3 files changed, 26 insertions, 6 deletions
diff --git a/TODO.BRANCH b/TODO.BRANCH
index a8f5deb..488765c 100644
--- a/TODO.BRANCH
+++ b/TODO.BRANCH
@@ -13,11 +13,6 @@ TESTS
Want tests for
- - start repo with old tag, push with new tag, run
- "old" dgit to push again with new tag, push again with
- old tag
-
-
* Test all three new --quilt=unapplied|gbp|dpm
diff --git a/debian/tests/control b/debian/tests/control
index e227e2b..df9fdf8 100644
--- a/debian/tests/control
+++ b/debian/tests/control
@@ -21,7 +21,7 @@ Tests-Directory: tests/tests
Depends: dgit, dgit-infrastructure, devscripts
Restrictions: x-dgit-git-only
-Tests: build-modes build-modes-asplit build-modes-gbp-asplit clone-gitnosuite clone-nogit debpolicy-dbretry debpolicy-newreject debpolicy-quilt-gbp distropatches-reject drs-clone-nogit drs-push-masterupdate drs-push-rejects dsd-clone-nogit dsd-divert fetch-localgitonly fetch-somegit-notlast inarchivecopy newtag-clone-nogit oldtag-clone-nogit push-buildproductsdir push-newpackage push-nextdgit quilt quilt-gbp quilt-gbp-build-modes quilt-singlepatch rpush tag-updates test-list-uptodate trustingpolicy-replay
+Tests: build-modes build-modes-asplit build-modes-gbp-asplit clone-gitnosuite clone-nogit debpolicy-dbretry debpolicy-newreject debpolicy-quilt-gbp distropatches-reject drs-clone-nogit drs-push-masterupdate drs-push-rejects dsd-clone-nogit dsd-divert fetch-localgitonly fetch-somegit-notlast inarchivecopy newtag-clone-nogit oldnewtagalt oldtag-clone-nogit push-buildproductsdir push-newpackage push-nextdgit quilt quilt-gbp quilt-gbp-build-modes quilt-singlepatch rpush tag-updates test-list-uptodate trustingpolicy-replay
Tests-Directory: tests/tests
Depends: dgit, dgit-infrastructure, devscripts
diff --git a/tests/tests/oldnewtagalt b/tests/tests/oldnewtagalt
new file mode 100755
index 0000000..cb270b2
--- /dev/null
+++ b/tests/tests/oldnewtagalt
@@ -0,0 +1,25 @@
+#!/bin/bash
+set -e
+. tests/lib
+
+t-setup-import examplegit
+t-tstunt-parsechangelog
+
+cd $p
+
+test-push () {
+ t-commit "$1"
+ t-dgit build-source
+ t-dgit push
+}
+
+for count in 1 2; do
+ t-oldtag
+ test-push "oldtag $count"
+
+ t-newtag
+ test-push "newtag $count"
+done
+
+echo ok.
+