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