diff --git a/test/buildah-bud/run-buildah-bud-tests b/test/buildah-bud/run-buildah-bud-tests index 3561c3f117..3407eb8c7c 100755 --- a/test/buildah-bud/run-buildah-bud-tests +++ b/test/buildah-bud/run-buildah-bud-tests @@ -177,11 +177,13 @@ if [[ -n $do_checkout ]]; then # the set of patches (set -x;git tag $BASE_TAG) - # Build buildah and the copy helper + # Build buildah and the copy and inet helpers failhint="error building buildah. This should never happen." (set -x;make bin/buildah) failhint="error building buildah's copy helper. This should never happen." (set -x;make bin/copy) + failhint="error building buildah's inet helper. This should never happen." + (set -x;make bin/inet) # The upcoming patch may fail. Before we try it, create a helper script # for a developer to push a new set of diffs to podman-land. @@ -259,5 +261,6 @@ review the test failure and double-check your changes. REMOTE=$REMOTE \ BUILDAH_BINARY=$(pwd)/bin/buildah \ COPY_BINARY=$(pwd)/bin/copy \ + INET_BINARY=$(pwd)/bin/inet \ bats "${bats_filter[@]}" tests/bud.bats) fi