summaryrefslogtreecommitdiff
path: root/test/system/300-cli-parsing.bats
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2019-03-19 09:12:27 -0700
committerGitHub <noreply@github.com>2019-03-19 09:12:27 -0700
commit537c382f5bd098bc89a457554db9bd0b08eab3c2 (patch)
tree649331a8c1b88393f07fe061390e5ca8a51b2007 /test/system/300-cli-parsing.bats
parenta1299f506d9b93824fae737f0f68a19adaf2bde1 (diff)
parent58d2e589fb4dbcc23cfc5ddd3f886a32a0ab759e (diff)
downloadpodman-537c382f5bd098bc89a457554db9bd0b08eab3c2.tar.gz
podman-537c382f5bd098bc89a457554db9bd0b08eab3c2.tar.bz2
podman-537c382f5bd098bc89a457554db9bd0b08eab3c2.zip
Merge pull request #2703 from edsantiago/bats
BATS: new tests, and improvements to existing ones
Diffstat (limited to 'test/system/300-cli-parsing.bats')
-rw-r--r--test/system/300-cli-parsing.bats15
1 files changed, 15 insertions, 0 deletions
diff --git a/test/system/300-cli-parsing.bats b/test/system/300-cli-parsing.bats
new file mode 100644
index 000000000..92c073102
--- /dev/null
+++ b/test/system/300-cli-parsing.bats
@@ -0,0 +1,15 @@
+#!/usr/bin/env bats -*- bats -*-
+#
+# Various command-line parsing regression tests that don't fit in elsewhere
+#
+
+load helpers
+
+@test "podman cli parsing - quoted args - #2574" {
+ # 1.1.2 fails with:
+ # Error: invalid argument "true=\"false\"" for "-l, --label" \
+ # flag: parse error on line 1, column 5: bare " in non-quoted-field
+ run_podman run --rm --label 'true="false"' $IMAGE true
+}
+
+# vim: filetype=sh