Skip to content

Commit d7991f2

Browse files
nalindLuap99
authored andcommitted
Build the dumpspec test helper for the buildah bud tests
Newer versions expect to use a new test helper. Signed-off-by: Nalin Dahyabhai <[email protected]> Signed-off-by: Paul Holzinger <[email protected]>
1 parent a06f39d commit d7991f2

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

test/buildah-bud/run-buildah-bud-tests

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,13 +177,15 @@ if [[ -n $do_checkout ]]; then
177177
# the set of patches
178178
(set -x;git tag $BASE_TAG)
179179

180-
# Build buildah and the copy and inet helpers
180+
# Build buildah and the copy, inet, and dumpspec test helpers
181181
failhint="error building buildah. This should never happen."
182182
(set -x;make bin/buildah)
183183
failhint="error building buildah's copy helper. This should never happen."
184184
(set -x;make bin/copy)
185185
failhint="error building buildah's inet helper. This should never happen."
186186
(set -x;make bin/inet)
187+
failhint="error building buildah's dumpspec helper. This should never happen."
188+
(set -x;make bin/dumpspec)
187189

188190
# The upcoming patch may fail. Before we try it, create a helper script
189191
# for a developer to push a new set of diffs to podman-land.
@@ -262,5 +264,6 @@ review the test failure and double-check your changes.
262264
BUILDAH_BINARY=$(pwd)/bin/buildah \
263265
COPY_BINARY=$(pwd)/bin/copy \
264266
INET_BINARY=$(pwd)/bin/inet \
267+
DUMPSPEC_BINARY=$(pwd)/bin/dumpspec \
265268
bats -j $(nproc) "${bats_filter[@]}" tests/bud.bats)
266269
fi

0 commit comments

Comments
 (0)