summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorVictor Toso <me@victortoso.com>2019-09-24 17:24:23 +0200
committerVictor Toso <me@victortoso.com>2019-09-25 14:44:07 +0200
commitf82cf87e6551dcb77c2a702ccbe5c016949df333 (patch)
treeb0a281a8402611a205a2e0d60d5390abedb03ea3 /tests
parentabbd985c780a3b4169b0130e7b8060725d358022 (diff)
tests: migrate: remove spicec option
Removed, see: | commit 1876971442ef808b5dcdaa5dc12df617f2179cb5 | Author: Christophe Fergeau <cfergeau@redhat.com> | Date: Fri Nov 21 11:01:17 2014 +0100 | | client: Remove client code | | The client has been superseded by virt-viewer ( | http://virt-manager.org/download/sources/virt-viewer/ ) | and is no longer being maintained. Signed-off-by: Victor Toso <victortoso@redhat.com> Acked-by: Frediano Ziglio <fziglio@redhat.com>
Diffstat (limited to 'tests')
-rwxr-xr-xtests/migrate.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/migrate.py b/tests/migrate.py
index 9a3cef47..0c302c92 100755
--- a/tests/migrate.py
+++ b/tests/migrate.py
@@ -16,7 +16,7 @@ Will leave a log file, migrate_test.log, in current directory.
"""
#
-# start one spiceclient, have two machines (active and target),
+# start one spice client, have two machines (active and target),
# and repeat:
# active wait until it's active
# active client_migrate_info
@@ -58,7 +58,7 @@ def get_args():
parser.add_argument('--qemu', dest='qemu', default='../../qemu/x86_64-softmmu/qemu-system-x86_64')
parser.add_argument('--log_filename', dest='log_filename', default='migrate.log')
parser.add_argument('--image', dest='image', default='')
- parser.add_argument('--client', dest='client', default='spicy', choices=['spicec', 'spicy'])
+ parser.add_argument('--client', dest='client', default='spicy', choices=['spicy'])
parser.add_argument('--vdagent', choices=['on', 'off'], default='on')
args = parser.parse_args(sys.argv[1:])
if os.path.exists(args.qemu):