1*83389e22SPhilippe Mathieu-Daudé#!/usr/bin/env python3 2409437e1SDaniel P. Berrange# 3409437e1SDaniel P. Berrange# Migration test graph plotting command 4409437e1SDaniel P. Berrange# 5409437e1SDaniel P. Berrange# Copyright (c) 2016 Red Hat, Inc. 6409437e1SDaniel P. Berrange# 7409437e1SDaniel P. Berrange# This library is free software; you can redistribute it and/or 8409437e1SDaniel P. Berrange# modify it under the terms of the GNU Lesser General Public 9409437e1SDaniel P. Berrange# License as published by the Free Software Foundation; either 10409437e1SDaniel P. Berrange# version 2 of the License, or (at your option) any later version. 11409437e1SDaniel P. Berrange# 12409437e1SDaniel P. Berrange# This library is distributed in the hope that it will be useful, 13409437e1SDaniel P. Berrange# but WITHOUT ANY WARRANTY; without even the implied warranty of 14409437e1SDaniel P. Berrange# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 15409437e1SDaniel P. Berrange# Lesser General Public License for more details. 16409437e1SDaniel P. Berrange# 17409437e1SDaniel P. Berrange# You should have received a copy of the GNU Lesser General Public 18409437e1SDaniel P. Berrange# License along with this library; if not, see <http://www.gnu.org/licenses/>. 19409437e1SDaniel P. Berrange# 20409437e1SDaniel P. Berrange 21409437e1SDaniel P. Berrangeimport sys 22409437e1SDaniel P. Berrange 23409437e1SDaniel P. Berrangefrom guestperf.shell import PlotShell 24409437e1SDaniel P. Berrange 25409437e1SDaniel P. Berrangeshell = PlotShell() 26409437e1SDaniel P. Berrangesys.exit(shell.run(sys.argv[1:])) 27