diff options
Diffstat (limited to 'test/system/030-run.bats')
-rw-r--r-- | test/system/030-run.bats | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/test/system/030-run.bats b/test/system/030-run.bats index 39ade22af..b2999a9e7 100644 --- a/test/system/030-run.bats +++ b/test/system/030-run.bats @@ -668,15 +668,4 @@ json-file | f is "$output" ".*HOME=/.*" } -@test "podman run --tty -i failure with no tty" { - run_podman run --tty -i --rm $IMAGE echo hello < /dev/null - is "$output" ".*The input device is not a TTY.*" - - run_podman run --tty=false -i --rm $IMAGE echo hello < /dev/null - is "$output" "hello" - - run_podman run --tty -i=false --rm $IMAGE echo hello < /dev/null - is "$output" "hello" -} - # vim: filetype=sh |