#!/usr/bin/make -f
# -*- makefile -*-

# The test framework requires raft-boltdb, and thus creates a circular
# dependency.
export DH_GOLANG_EXCLUDES := fuzzy

# We will ignore the many intermittent test failures on s390x
ifeq ($(DEB_BUILD_ARCH),s390x)
  MINUS:=-
endif

%:
	dh $@ --buildsystem=golang

override_dh_auto_test:
	$(MINUS)dh_auto_test
