index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
author | Andrew Gregory <andrew.gregory.8@gmail.com> | 2013-08-18 15:06:30 -0400 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2013-08-21 11:00:18 +1000 |
commit | 2e2c614f0e35dfbf80c17d55377418c1ded3f065 (patch) | |
tree | f740f3a0ce3d4e09166a99593eed25dc09faa193 /test | |
parent | 48861f509a817649f6cbda63e5ed253bdebc4f56 (diff) |
-rw-r--r-- | test/pacman/tests/query006.py | 5 |
diff --git a/test/pacman/tests/query006.py b/test/pacman/tests/query006.py index 36684785..0f6f762b 100644 --- a/test/pacman/tests/query006.py +++ b/test/pacman/tests/query006.py @@ -24,4 +24,7 @@ self.addrule("PACMAN_OUTPUT=^Installed Size.*9765625.00 KiB") self.addrule("PACMAN_OUTPUT=^Build Date.* 2065") self.addrule("PACMAN_OUTPUT=^Install Date.* 2286") -self.expectfailure = True +# expect failure on 32bit systems +import sys +if sys.maxsize <= 2**32: + self.expectfailure = True |