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.
42 lines
1.1 KiB
Bash
Executable File
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
|