diff options
author | Cole Robinson <crobinso@redhat.com> | 2019-11-24 17:25:51 -0500 |
---|---|---|
committer | Cole Robinson <crobinso@redhat.com> | 2019-11-24 17:25:51 -0500 |
commit | 4ef519229da8181f3d9f9a0fb99fd3f413dd9ff9 (patch) | |
tree | fb4b5d441535351be2ea71ea5906ff5f347de768 /tests | |
parent | b55a959e5e73dcff84aae293f0877956fb4cde2c (diff) | |
download | virt-manager-4ef519229da8181f3d9f9a0fb99fd3f413dd9ff9.tar.gz |
virt-install: Drop warning about '--console none'
This should be rarely if ever used, don't warn the user about this
case
Signed-off-by: Cole Robinson <crobinso@redhat.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/clitest.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/clitest.py b/tests/clitest.py index 6ee7fc42..03d6d52f 100644 --- a/tests/clitest.py +++ b/tests/clitest.py @@ -1099,7 +1099,6 @@ c.add_valid("--pxe --destroy-on-exit", grep="Restarting guest.\n") # destroy-on c.add_valid("--pxe --transient --destroy-on-exit", grep="Domain creation completed.") # destroy-on-exit + transient c.add_valid("--pxe --graphics vnc --noreboot", grep="testsuite console command: ['virt-viewer'") # mock virt-viewer waiting, with noreboot magic c.add_valid("--nographics --cdrom %(EXISTIMG1)s") # console warning about cdrom + nographics -c.add_valid("--nographics --console none --location %(TREEDIR)s", grep="No --console device added") # console warning about nographics + --console none c.add_valid("--nographics --console none --location %(TREEDIR)s", grep="Directory tree installs typically") # warning about directory trees not working well c.add_valid("--pxe --nographics --transient", grep="testsuite console command: ['virsh'") # --transient handling |