summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@arm.com>2021-08-09 15:25:50 +0100
committerBrian C. Lane <bcl@redhat.com>2021-08-10 14:24:23 -0700
commitb5e17a613d2ea9894fcc090499dcc73e3ea07f61 (patch)
treeee4f2aebcfd75e8376421353cd15fea9546bb2b3 /tests
parentf8dd8c2c255a3c5c398a62ffdc1bcf5468becccd (diff)
downloadparted-b5e17a613d2ea9894fcc090499dcc73e3ea07f61.tar.gz
tests: add aarch64 and mips64 as a valid 64-bit machines
require_64_bit_ in t-lib-helpers.sh has a hard-coded list of uname machines that are 64-bit, so add aarch64 and mips64 to cover the major architectures. Signed-off-by: Brian C. Lane <bcl@redhat.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/t-lib-helpers.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/t-lib-helpers.sh b/tests/t-lib-helpers.sh
index 9312343..dddb44e 100644
--- a/tests/t-lib-helpers.sh
+++ b/tests/t-lib-helpers.sh
@@ -411,7 +411,7 @@ device_mapper_required_()
require_64bit_()
{
case $(uname -m) in
- x86_64|ppc64)
+ aarch64|mips64|ppc64|x86_64)
return 0;;
*)
skip_ "This test requires a 64 bit system"