diff options
| author | 2021-12-10 20:22:09 -0500 | |
|---|---|---|
| committer | 2021-12-10 20:22:09 -0500 | |
| commit | 53e82093ae38ef858088fd14a7a1d1faf2d3714e (patch) | |
| tree | e756a13eb042af09fa6b7dfd1fcf60e545d1d86e /debian/rules | |
| parent | 11dc24764d1713fc4921455742a7572d99a49498 (diff) | |
d/rules: Restrict tests to amd64 and i386 due to intermittent failures.debian/2.4.0+dfsg-2
Diffstat (limited to 'debian/rules')
| -rwxr-xr-x | debian/rules | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/debian/rules b/debian/rules index 2e0b32a..28e1566 100755 --- a/debian/rules +++ b/debian/rules @@ -12,7 +12,7 @@ export BARRIER_VERSION_STAGE=Release ifneq (,$(filter nocheck,$(DEB_BUILD_OPTIONS))) CONFIGURE_FLAGS += -DBARRIER_BUILD_TESTS=no -else ifneq (,$(filter s390x,$(DEB_HOST_ARCH))) +else ifeq (,$(filter amd64 i386,$(DEB_HOST_ARCH))) CONFIGURE_FLAGS += -DBARRIER_BUILD_TESTS=no endif @@ -23,7 +23,7 @@ override_dh_auto_configure: dh_auto_configure --builddirectory=builddir -- -DBARRIER_USE_EXTERNAL_GTEST=ON $(CONFIGURE_FLAGS) override_dh_auto_test: -ifeq (,$(filter s390x,$(DEB_HOST_ARCH))) +ifneq (,$(filter amd64 i386,$(DEB_HOST_ARCH))) builddir/bin/guiunittests xvfb-run -a builddir/bin/integtests builddir/bin/unittests |
