Add RUN with priv'd command build test

Update build test to include test for RUN with a priv'd command.

Signed-off-by: TomSweeneyRedHat  <tsweeney@redhat.com>
This commit is contained in:
root 2019-06-18 19:32:37 -04:00
parent 5df8178c99
commit 7eda299e91

View file

@ -196,10 +196,22 @@ echo ########################################################
echo test "build with preprocessor"
echo ########################################################
target=alpine-image
TARGET=alpine-image
podman build -q -t ${TARGET} -f Decomposed.in $HOME/test/build/preprocess
buildah --debug=false images
CID=$(buildah from $TARGET)
buildah rm $CID
podman rmi $(buildah --debug=false images -q)
buildah --debug=false images -q
echo ########################################################
echo test "build with priv'd RUN"
echo ########################################################
TARGET=alpinepriv
podman build -q -t ${TARGET} -f $HOME/test/build/run-privd $HOME/test/build/run-privd
buildah --debug=false images
CID=$(buildah from $TARGET)
buildah rm $CID
podman rmi $(buildah --debug=false images -q)
buildah --debug=false images -q