github.com/containers/libpod@v1.9.4-0.20220419124438-4284fd425507/test/system/300-cli-parsing.bats (about) 1 #!/usr/bin/env bats -*- bats -*- 2 # 3 # Various command-line parsing regression tests that don't fit in elsewhere 4 # 5 6 load helpers 7 8 @test "podman cli parsing - quoted args - #2574" { 9 # 1.1.2 fails with: 10 # Error: invalid argument "true=\"false\"" for "-l, --label" \ 11 # flag: parse error on line 1, column 5: bare " in non-quoted-field 12 run_podman run --rm --label 'true="false"' $IMAGE true 13 } 14 15 # vim: filetype=sh