#!/usr/bin/make -f

%:
	dh $@ --builddirectory=_build --buildsystem=golang

# aws_kms_integration_test.go:73: a.Encrypt(plaintext, associatedData) err = RequestError: send request failed
# caused by: Post "https://kms.us-east-2.amazonaws.com/": dial tcp: lookup kms.us-east-2.amazonaws.com on [::1]:53: read udp [::1]:43787->[::1]:53: read: connection refused, want nil
SKIP="TestNewClientWithCredentialsGetAEADEncryptDecrypt|TestEmptyAssociatedDataEncryptDecrypt|TestKeyCommitment|TestKMSEnvelopeAEADEncryptAndDecrypt|TestDecryptValidCiphertextForKeyURI|TestNewAEADWithContextEncryptDecrypt"
override_dh_auto_test:
	-dh_auto_test $(DH_BUILD_OPTS) -- -run=$(SKIP)
	dh_auto_test $(DH_BUILD_OPTS) -- -skip=$(SKIP)
