diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-02-25 21:22:58 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-25 21:22:58 +0100 |
commit | bde1d3f281b4d06b87320f3f001e67c79474a6a5 (patch) | |
tree | a433f4fa8f20b81cb3d0d12f685b8de886258aa8 /test/system/030-run.bats | |
parent | b220d6cd06360d6b868cd7fb7c32d2602aab69a5 (diff) | |
parent | bee21f1e42a36622c9694e7d3a03ad40d0ebd04b (diff) | |
download | podman-bde1d3f281b4d06b87320f3f001e67c79474a6a5.tar.gz podman-bde1d3f281b4d06b87320f3f001e67c79474a6a5.tar.bz2 podman-bde1d3f281b4d06b87320f3f001e67c79474a6a5.zip |
Merge pull request #9491 from edsantiago/testimage_multiarch
system test image: build it multiarch
Diffstat (limited to 'test/system/030-run.bats')
-rw-r--r-- | test/system/030-run.bats | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/system/030-run.bats b/test/system/030-run.bats index 93449ece9..b2999a9e7 100644 --- a/test/system/030-run.bats +++ b/test/system/030-run.bats @@ -139,7 +139,7 @@ echo $rand | 0 | $rand is "$output" "" "--pull=never [present]: no output" # Now test with a remote image which we don't have present (the 00 tag) - NONLOCAL_IMAGE="$PODMAN_TEST_IMAGE_REGISTRY/$PODMAN_TEST_IMAGE_USER/$PODMAN_TEST_IMAGE_NAME:00000000" + NONLOCAL_IMAGE="$PODMAN_NONLOCAL_IMAGE_FQN" run_podman 125 run --pull=never $NONLOCAL_IMAGE true is "$output" "Error: unable to find a name and tag match for $NONLOCAL_IMAGE in repotags: no such image" "--pull=never [with image not present]: error" @@ -175,7 +175,7 @@ echo $rand | 0 | $rand # 'run --rmi' deletes the image in the end unless it's used by another container @test "podman run --rmi" { # Name of a nonlocal image. It should be pulled in by the first 'run' - NONLOCAL_IMAGE="$PODMAN_TEST_IMAGE_REGISTRY/$PODMAN_TEST_IMAGE_USER/$PODMAN_TEST_IMAGE_NAME:00000000" + NONLOCAL_IMAGE="$PODMAN_NONLOCAL_IMAGE_FQN" run_podman 1 image exists $NONLOCAL_IMAGE # Run a container, without --rm; this should block subsequent --rmi |