diff options
-rw-r--r-- | debian/control | 2 | ||||
-rwxr-xr-x | debian/rules | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/debian/control b/debian/control index aeb749e4..b0038378 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.12) [!mipsel !ppc64] + googletest (>= 1.12) [!mipsel !ppc64] <!nocheck> Rules-Requires-Root: no Standards-Version: 4.6.1 Section: libs diff --git a/debian/rules b/debian/rules index 86492154..0dbb698e 100755 --- a/debian/rules +++ b/debian/rules @@ -20,8 +20,12 @@ export DEB_BUILD_MAINT_OPTIONS = hardening=+bindnow reproducible=+fixfilepath # Unit tests require more than 2 GB of RAM, so disable them on mipsel. # # Unit tests are not yet passing on ppc64, so disable them there as well. +# +# Disable unit tests unconditionally if nocheck is set. ifneq ($(filter $(DEB_HOST_ARCH),mipsel ppc64),) ABSL_RUN_TESTS=OFF +else ifneq ($(filter nocheck,$(DEB_BUILD_OPTIONS)),) +ABSL_RUN_TESTS=OFF else ABSL_RUN_TESTS=ON endif |