diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/fix1.test | 9 | ||||
-rw-r--r-- | test/fix2.test | 9 | ||||
-rw-r--r-- | test/fix3.test | 11 | ||||
-rw-r--r-- | test/fix4.test | 8 | ||||
-rw-r--r-- | test/fix5.test | 8 | ||||
-rw-r--r-- | test/fix6.test | 10 |
6 files changed, 55 insertions, 0 deletions
diff --git a/test/fix1.test b/test/fix1.test new file mode 100644 index 0000000..fcc0a98 --- /dev/null +++ b/test/fix1.test @@ -0,0 +1,9 @@ +@ARGS +--test-repo basic.repo +--test-instdb basic.installed +--test-world a +--upgrade +fix b +@EXPECT +(1/1) Upgrading b (1 -> 2) +OK: 0 MiB in 2 packages diff --git a/test/fix2.test b/test/fix2.test new file mode 100644 index 0000000..25f2198 --- /dev/null +++ b/test/fix2.test @@ -0,0 +1,9 @@ +@ARGS +--test-repo basic.repo +--test-instdb basic.installed +--test-world a +--upgrade +fix a +@EXPECT +(1/1) Upgrading a (1 -> 2) +OK: 0 MiB in 2 packages diff --git a/test/fix3.test b/test/fix3.test new file mode 100644 index 0000000..364f710 --- /dev/null +++ b/test/fix3.test @@ -0,0 +1,11 @@ +@ARGS +--test-repo basic.repo +--test-instdb basic.installed +--test-world a +--upgrade +--depends +fix a +@EXPECT +(1/2) Upgrading b (1 -> 2) +(2/2) Upgrading a (1 -> 2) +OK: 0 MiB in 2 packages diff --git a/test/fix4.test b/test/fix4.test new file mode 100644 index 0000000..431266b --- /dev/null +++ b/test/fix4.test @@ -0,0 +1,8 @@ +@ARGS +--test-repo basic.repo +--test-instdb basic.installed +--test-world a +fix b +@EXPECT +(1/1) Re-installing b (1) +OK: 0 MiB in 2 packages diff --git a/test/fix5.test b/test/fix5.test new file mode 100644 index 0000000..33029fc --- /dev/null +++ b/test/fix5.test @@ -0,0 +1,8 @@ +@ARGS +--test-repo basic.repo +--test-instdb basic.installed +--test-world a +fix a +@EXPECT +(1/1) Re-installing a (1) +OK: 0 MiB in 2 packages diff --git a/test/fix6.test b/test/fix6.test new file mode 100644 index 0000000..c6dc6bd --- /dev/null +++ b/test/fix6.test @@ -0,0 +1,10 @@ +@ARGS +--test-repo basic.repo +--test-instdb basic.installed +--test-world a +--depends +fix a +@EXPECT +(1/2) Re-installing b (1) +(2/2) Re-installing a (1) +OK: 0 MiB in 2 packages |