diff options
author | Timo Teräs <timo.teras@iki.fi> | 2013-06-12 08:45:29 +0300 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2013-06-13 18:22:00 +0300 |
commit | 426a12686e6e6dcce11616c774176c01ad0985f9 (patch) | |
tree | 0fcad980e90c3d679b883c7840af91d5ffb0962e /test | |
parent | b8c44536ca911418fee1c9ab4eecbb913a1ca852 (diff) | |
download | apk-tools-426a12686e6e6dcce11616c774176c01ad0985f9.tar.gz apk-tools-426a12686e6e6dcce11616c774176c01ad0985f9.tar.bz2 apk-tools-426a12686e6e6dcce11616c774176c01ad0985f9.tar.xz apk-tools-426a12686e6e6dcce11616c774176c01ad0985f9.zip |
solver: rewrite as deductive solver -- per name flags
Handle properly per-name preference flags, and add test cases
for testing those via fix applet.
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 |