summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Heon <matthew.heon@pm.me>2020-07-22 16:34:39 -0400
committerMatthew Heon <matthew.heon@pm.me>2020-07-22 16:34:39 -0400
commit2faeb2189f81b6925d80aa8031cb5b19aa8618cb (patch)
tree4fc8aa7a9379260c103d86c37cfc0a2ad511a9e9
parentb2e0a03371d73c06ff953216cbcdc4932929d206 (diff)
downloadpodman-2faeb2189f81b6925d80aa8031cb5b19aa8618cb.tar.gz
podman-2faeb2189f81b6925d80aa8031cb5b19aa8618cb.tar.bz2
podman-2faeb2189f81b6925d80aa8031cb5b19aa8618cb.zip
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 <matthew.heon@pm.me>
-rw-r--r--test/apiv2/20-containers.at13
1 files changed, 0 insertions, 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 \