diff options
author | root <tsweeney@redhat.com> | 2019-06-18 19:32:37 -0400 |
---|---|---|
committer | root <tsweeney@redhat.com> | 2019-06-18 19:34:14 -0400 |
commit | 7eda299e91884eef5c2026e5a1c8ffb1749cdf24 (patch) | |
tree | 931e62491087100666725d29e8ae593780f94387 /test/test_podman_build.sh | |
parent | 5df8178c995fe6422f0fed258cd65f6cbcf26f2e (diff) | |
download | podman-7eda299e91884eef5c2026e5a1c8ffb1749cdf24.tar.gz podman-7eda299e91884eef5c2026e5a1c8ffb1749cdf24.tar.bz2 podman-7eda299e91884eef5c2026e5a1c8ffb1749cdf24.zip |
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>
Diffstat (limited to 'test/test_podman_build.sh')
-rw-r--r-- | test/test_podman_build.sh | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/test/test_podman_build.sh b/test/test_podman_build.sh index 39f1e784d..e3e53cae6 100644 --- a/test/test_podman_build.sh +++ b/test/test_podman_build.sh @@ -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 |