50b50ef537ed410a20e8673b89675431eebb11c7
[qemu-sanity-check.git] / qemu-sanity-check.in
1 #!/bin/bash
2 # -*- shell-script -*-
3 # qemu-sanity-check
4 # Copyright (C) 2013 Red Hat Inc.
5 #
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2 of the License, or
9 # (at your option) any later version.
10 #
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19
20 # Handle command line parsing.
21
22 function usage {
23     echo "qemu-sanity-check [options]"
24     echo "Options:"
25     echo "  --help          Display this help"
26     echo "  --version       Display version and exit"
27     exit 0
28 }
29
30 TEMP=$(getopt \
31     -o v \
32     --long help \
33     --long version \
34     -n 'qemu-sanity-check' -- "$@")
35 if [ $? != 0 ]; then exit 1; fi
36 eval set -- "$TEMP"
37
38 while true; do
39     case "$1" in
40         --help) usage ;;
41         -v|--version) echo "@PACKAGE_NAME@ @PACKAGE_VERSION@"; exit 0 ;;
42         --) shift; break ;;
43         *) fail "internal error ($1)" ;;
44     esac
45 done