diff options
author | Matthew Heon <mheon@redhat.com> | 2022-03-17 15:16:13 -0400 |
---|---|---|
committer | Matthew Heon <mheon@redhat.com> | 2022-03-17 15:16:13 -0400 |
commit | 4b359e4598ec795b8eff3dfebae52b17c195c22b (patch) | |
tree | d8deb40392da9412e712ac0adf8879701192d4c7 /test/compose/ipam_set_ip | |
parent | bde3ca8c363bfbd0f50fe9c787960836212e0167 (diff) | |
download | podman-4b359e4598ec795b8eff3dfebae52b17c195c22b.tar.gz podman-4b359e4598ec795b8eff3dfebae52b17c195c22b.tar.bz2 podman-4b359e4598ec795b8eff3dfebae52b17c195c22b.zip |
Set names in compose tests based on version
Compose v2 uses dashes as separators instead of hyphens. This
broke some tests that relied upon container names. Set the name
conditionally to make it safe for both.
Signed-off-by: Matthew Heon <mheon@redhat.com>
Diffstat (limited to 'test/compose/ipam_set_ip')
-rw-r--r-- | test/compose/ipam_set_ip/tests.sh | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/test/compose/ipam_set_ip/tests.sh b/test/compose/ipam_set_ip/tests.sh index ecaf3167e..b9e761ea2 100644 --- a/test/compose/ipam_set_ip/tests.sh +++ b/test/compose/ipam_set_ip/tests.sh @@ -1,4 +1,8 @@ # -*- bash -*- -podman container inspect ipam_set_ip_test_1 --format '{{ .NetworkSettings.Networks.ipam_set_ip_net1.IPAddress }}' +ctr_name="ipam_set_ip_test_1" +if [ "$TEST_FLAVOR" = "compose_v2" ]; then + ctr_name="ipam_set_ip-test-1" +fi +podman container inspect "$ctr_name" --format '{{ .NetworkSettings.Networks.ipam_set_ip_net1.IPAddress }}' like "$output" "10.123.0.253" "$testname : ip address is set" |