summaryrefslogtreecommitdiff
path: root/debian/rules
diff options
context:
space:
mode:
authorGravatar Benjamin Barenblat <bbaren@google.com>2021-04-16 11:51:34 -0400
committerGravatar Benjamin Barenblat <bbaren@google.com>2021-04-16 11:51:34 -0400
commita9940c9c7fd5ec3377d120d373e0deadce01e05f (patch)
treef317f6e7233a0b66b7cfbb56e3da51843eb9fe3a /debian/rules
parent23eae53a7683ba6949c89c3b6ee484f9264597ee (diff)
Reenable unit tests on arm64
Diffstat (limited to 'debian/rules')
-rwxr-xr-xdebian/rules4
1 files changed, 1 insertions, 3 deletions
diff --git a/debian/rules b/debian/rules
index 1ce42692..d9a52e99 100755
--- a/debian/rules
+++ b/debian/rules
@@ -18,9 +18,7 @@ include /usr/share/dpkg/architecture.mk
export DEB_BUILD_MAINT_OPTIONS = hardening=+bindnow reproducible=+fixfilepath
# Unit tests aren't working on all platforms yet.
-ifeq ($(DEB_HOST_ARCH),amd64)
-ABSL_RUN_TESTS=ON
-else ifeq ($(DEB_HOST_ARCH),ppc64el)
+ifneq ($(filter $(DEB_HOST_ARCH),amd64 arm64 ppc64el),)
ABSL_RUN_TESTS=ON
else
ABSL_RUN_TESTS=OFF