Files
virt-v2v/tests/test-v2v-o-rhv-upload-oo-query.sh
Richard W.M. Jones 0d6d15ebdc tests: Use functions.sh.in from nbdkit
Replace hacky test-functions.sh with cleaner stuff from nbdkit.

Unfortunately some parts of the common/ submodule depend on
$TEST_FUNCTIONS too so I had to leave that variable in subdir-rules.mk
for the time being.
2021-08-03 16:59:35 +01:00

42 lines
1.1 KiB
Bash
Executable File

#!/bin/bash -
# libguestfs virt-v2v test script
# Copyright (C) 2018 Red Hat Inc.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
# Test -oo "?" option.
set -e
source ./functions.sh
set -e
set -x
skip_if_skipped
export VIRT_TOOLS_DATA_DIR="$srcdir/../test-data/fake-virt-tools"
export VIRTIO_WIN="$srcdir/../test-data/fake-virtio-win"
f=test-v2v-o-rhv-upload-oo-query.actual
rm -f $f
$VG virt-v2v --debug-gc \
-o rhv-upload -oo "?" > $f
grep -- "-oo rhv-cafile" $f
grep -- "-oo rhv-verifypeer" $f
rm $f