diff options
author | Andrew Gregory <andrew.gregory.8@gmail.com> | 2013-08-18 21:06:30 +0200 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2013-08-21 03:00:18 +0200 |
commit | 2e2c614f0e35dfbf80c17d55377418c1ded3f065 (patch) | |
tree | f740f3a0ce3d4e09166a99593eed25dc09faa193 /test | |
parent | 48861f509a817649f6cbda63e5ed253bdebc4f56 (diff) | |
download | pacman-2e2c614f0e35dfbf80c17d55377418c1ded3f065.tar.gz pacman-2e2c614f0e35dfbf80c17d55377418c1ded3f065.tar.xz |
query006: only set expectfailure on 32-bit systems
Use the architecture of the python interpreter running the test to
detect 32bit systems.
Signed-off-by: Andrew Gregory <andrew.gregory.8@gmail.com>
Signed-off-by: Allan McRae <allan@archlinux.org>
Diffstat (limited to 'test')
-rw-r--r-- | test/pacman/tests/query006.py | 5 |
1 files changed, 4 insertions, 1 deletions
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 |