From 2faeb2189f81b6925d80aa8031cb5b19aa8618cb Mon Sep 17 00:00:00 2001 From: Matthew Heon Date: Wed, 22 Jul 2020 16:34:39 -0400 Subject: Drop a nonfunctional test in test/apiv2 I'm somewhat reluctant to do this, but the file has diverged majorly from master, and the amount of stuff we've backported (versus not backported) makes me very hesitant to try cherry picking more from master in the hope that it will start working. Signed-off-by: Matthew Heon --- test/apiv2/20-containers.at | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/test/apiv2/20-containers.at b/test/apiv2/20-containers.at index ec50e659f..60f6d97aa 100644 --- a/test/apiv2/20-containers.at +++ b/test/apiv2/20-containers.at @@ -30,19 +30,6 @@ cid=$(jq -r '.[0].Id' <<<"$output") t DELETE libpod/containers/$cid 204 -# Ensure that API does not occur: Create Container creates an invalid and the container fails to start -# https://github.com/containers/libpod/issues/6799 -CNAME=testArgs -t POST libpod/containers/create?name=${CNAME} Image=${IMAGE} 201 \ - .Id~[0-9a-f]\\{64\\} -t GET libpod/containers/json?limit=1 200 \ - length=1 \ - .[0].Id~[0-9a-f]\\{64\\} -cid=$(jq -r '.[0].Id' <<<"$output") -# This step should start the container properly -t POST libpod/containers/${cid}/start '' 204 -t DELETE libpod/containers/$cid 204 - CNAME=myfoo podman run --name $CNAME $IMAGE -td top t GET libpod/containers/json?all=true 200 \ -- cgit v1.2.3-54-g00ecf