summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Benjamin Barenblat <bbaren@google.com>2021-06-13 12:21:05 -0400
committerGravatar Benjamin Barenblat <bbaren@google.com>2021-06-13 12:21:05 -0400
commita30ed81b4bf8df18c2b7d153c7a87563b68bb281 (patch)
treeb024d44d8f9bf27f4d7ffbca518a462801c86db2
parent63ca54e33cab7e8c27c16394bcfe1a218b5aba07 (diff)
Reenable unit tests on mips64el
-rw-r--r--debian/changelog2
-rw-r--r--debian/control2
-rwxr-xr-xdebian/rules2
3 files changed, 3 insertions, 3 deletions
diff --git a/debian/changelog b/debian/changelog
index fad786bb..f69c9522 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -5,7 +5,7 @@ abseil (0~20210324.2-1) UNRELEASED; urgency=medium
* Mangle upstream version in debian/watch to match manual mangling in
debian/changelog.
* Compute Thumb function bounds correctly. (Closes: #987314)
- * Reenable unit tests on arm64.
+ * Reenable unit tests on arm64 and mips64el.
-- Benjamin Barenblat <bbaren@debian.org> Thu, 08 Apr 2021 10:28:01 -0400
diff --git a/debian/control b/debian/control
index 6573b8af..d0623013 100644
--- a/debian/control
+++ b/debian/control
@@ -18,7 +18,7 @@ Maintainer: Benjamin Barenblat <bbaren@debian.org>
Build-Depends:
cmake (>= 3.5),
debhelper-compat (= 12),
- googletest (>= 1.10.0.20200926) [amd64 arm64 ppc64el],
+ googletest (>= 1.10.0.20200926) [amd64 arm64 mips64el ppc64el],
Rules-Requires-Root: no
Standards-Version: 4.5.1
Section: libs
diff --git a/debian/rules b/debian/rules
index d9a52e99..fa8c20e3 100755
--- a/debian/rules
+++ b/debian/rules
@@ -18,7 +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.
-ifneq ($(filter $(DEB_HOST_ARCH),amd64 arm64 ppc64el),)
+ifneq ($(filter $(DEB_HOST_ARCH),amd64 arm64 mips64el ppc64el),)
ABSL_RUN_TESTS=ON
else
ABSL_RUN_TESTS=OFF