diff options
author | Nagy Gabor <ngaba@bibl.u-szeged.hu> | 2009-05-20 21:46:23 +0200 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2010-05-05 17:37:01 +0200 |
commit | ac9dde072c56b9dbc3fe515dc3702c2c992f492f (patch) | |
tree | 1a600dc9a1a5a06af0eb1b60507ea7551f0a2e8f /pactest/tests/database002.py | |
parent | 6b6eb6345bb3d9f59d967144968328c9a4b7873c (diff) | |
download | pacman-ac9dde072c56b9dbc3fe515dc3702c2c992f492f.tar.gz pacman-ac9dde072c56b9dbc3fe515dc3702c2c992f492f.tar.xz |
Introduce -D, --database
The request of FS#12950 is implemented.
On the backend side, I introduced a new function, alpm_db_set_pkgreason(),
to modify the install reason of a package in the local database. On the
front-end side, I introduced a new main operation, -D/--database, which has
two options, --asdeps and --asexplicit. I documented this in pacman manual.
I've created two pactests to test -D: database001.py and database002.py.
Signed-off-by: Nagy Gabor <ngaba@bibl.u-szeged.hu>
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'pactest/tests/database002.py')
-rw-r--r-- | pactest/tests/database002.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/pactest/tests/database002.py b/pactest/tests/database002.py new file mode 100644 index 00000000..05fa7f4b --- /dev/null +++ b/pactest/tests/database002.py @@ -0,0 +1,11 @@ +self.description = "-D --asexplicit" + +lp = pmpkg("pkg") +lp.reason = 1 +self.addpkg2db("local", lp) + +self.args = "-D pkg --asexplicit" + +self.addrule("PACMAN_RETCODE=0") +self.addrule("PKG_EXIST=pkg") +self.addrule("PKG_REASON=pkg|0") |