[pacman-dev] [PATCH] New pactest: unresolvable001.py

Dan McGee dpmcgee at gmail.com
Mon May 17 19:09:00 EDT 2010


On Mon, May 17, 2010 at 2:41 PM, Nagy Gabor <ngaba at bibl.u-szeged.hu> wrote:
> To test the regression of commit a4084b91.

This might not be the ID on the main branch so that might not work.

But with that said, I thought you said forget about it completely in
that other email? What is the plan here?

> Signed-off-by: Nagy Gabor <ngaba at bibl.u-szeged.hu>
> ---
>  pactest/tests/unresolvable001.py |   21 +++++++++++++++++++++
>  1 files changed, 21 insertions(+), 0 deletions(-)
>  create mode 100644 pactest/tests/unresolvable001.py
>
> diff --git a/pactest/tests/unresolvable001.py b/pactest/tests/unresolvable001.py
> new file mode 100644
> index 0000000..c98a4c0
> --- /dev/null
> +++ b/pactest/tests/unresolvable001.py
> @@ -0,0 +1,21 @@
> +self.description = "An unresolvable dependency"
> +
> +packageA1 = pmpkg("dep")
> +self.addpkg2db("local", packageA1)
> +
> +packageA1up = pmpkg("dep", "2.0-1")
> +packageA1up.depends = ["fake"];
> +self.addpkg2db("sync", packageA1up)
> +
> +packageA2up = pmpkg("package")
> +packageA2up.depends = ["dep"];
> +self.addpkg2db("sync", packageA2up)
> +
> +self.args = "-S package dep --ask=32"
> +
> +self.addrule("PACMAN_RETCODE=0")
> +self.addrule("PKG_EXIST=package")
> +self.addrule("PKG_EXIST=dep")
> +self.addrule("PKG_VERSION=dep|1.0-1")
> +
> +self.expectfailure = True
> --
> 1.7.1
>
>
>


More information about the pacman-dev mailing list