1*212c1933SFabiano Rosas#!/usr/bin/env python3 2*212c1933SFabiano Rosas# 3*212c1933SFabiano Rosas# Migration test direct invocation command 4*212c1933SFabiano Rosas# 5*212c1933SFabiano Rosas# Copyright (c) 2016 Red Hat, Inc. 6*212c1933SFabiano Rosas# 7*212c1933SFabiano Rosas# This library is free software; you can redistribute it and/or 8*212c1933SFabiano Rosas# modify it under the terms of the GNU Lesser General Public 9*212c1933SFabiano Rosas# License as published by the Free Software Foundation; either 10*212c1933SFabiano Rosas# version 2.1 of the License, or (at your option) any later version. 11*212c1933SFabiano Rosas# 12*212c1933SFabiano Rosas# This library is distributed in the hope that it will be useful, 13*212c1933SFabiano Rosas# but WITHOUT ANY WARRANTY; without even the implied warranty of 14*212c1933SFabiano Rosas# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 15*212c1933SFabiano Rosas# Lesser General Public License for more details. 16*212c1933SFabiano Rosas# 17*212c1933SFabiano Rosas# You should have received a copy of the GNU Lesser General Public 18*212c1933SFabiano Rosas# License along with this library; if not, see <http://www.gnu.org/licenses/>. 19*212c1933SFabiano Rosas# 20*212c1933SFabiano Rosas 21*212c1933SFabiano Rosas 22*212c1933SFabiano Rosasimport sys 23*212c1933SFabiano Rosas 24*212c1933SFabiano Rosasfrom guestperf.shell import Shell 25*212c1933SFabiano Rosas 26*212c1933SFabiano Rosasshell = Shell() 27*212c1933SFabiano Rosassys.exit(shell.run(sys.argv[1:])) 28