#!/bin/sh

set -e

ARCH=$(arch)
if [ "$ARCH" = "s390x" ]; then
	echo "Skipping tests due to https://bugs.launchpad.net/bugs/2060760"
	exit 0
fi
# clear proxy configuration as it causes some tests
# to fail.
unset http_proxy
unset https_proxy 
pkgos-dh_auto_test
