From 73aa6b610e22377a40c567156b610319ffb9e024 Mon Sep 17 00:00:00 2001 From: Chantry Xavier Date: Sat, 22 Dec 2007 20:32:57 +0100 Subject: fix two broken pactests because of date localization. query002 and sync1100 had PACMAN_OUTPUT rules that looked at the build/install date (localized). Instead of looking at the month name, it will now check the year, which should be safer. I also had to add another pactest (query005) for keeping the same coverage. Signed-off-by: Chantry Xavier --- pactest/tests/query005.py | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 pactest/tests/query005.py (limited to 'pactest/tests/query005.py') diff --git a/pactest/tests/query005.py b/pactest/tests/query005.py new file mode 100644 index 00000000..0c0bc51e --- /dev/null +++ b/pactest/tests/query005.py @@ -0,0 +1,21 @@ +self.description = "Query info on a package" + +p = pmpkg("foobar") +p.files = ["bin/foobar"] +p.desc = "test description" +p.groups = ["foo"] +p.url = "http://www.archlinux.org" +p.license = "GPL2" +p.arch = "i686" +# test new style date +p.builddate = "1196640127" +p.packager = "Arch Linux" + +self.addpkg2db("local", p) + +self.args = "-Qi %s" % p.name + +self.addrule("PACMAN_RETCODE=0") +self.addrule("PACMAN_OUTPUT=%s" % p.name) +self.addrule("PACMAN_OUTPUT=%s" % p.desc) +self.addrule("PACMAN_OUTPUT=2007") -- cgit v1.2.3-24-g4f1b