vmcheck: remove test-basic.sh

This is a useless test for now since we should be able to test on a VM
even if there are updates available.

I initially had it just as an example of the vmcheck test harness,
without actually thinking too much into what it was testing. But we do
need a nice test-basic.sh that will give rpm-ostree a good general
workout.

Closes: #394
Approved by: cgwalters
This commit is contained in:
Jonathan Lebon 2016-07-14 15:52:33 -04:00 committed by Atomic Bot
parent cc2551dc06
commit 2da585023d

View File

@ -1,37 +0,0 @@
#!/bin/bash
#
# Copyright (C) 2016 Jonathan Lebon <jlebon@redhat.com>
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2 of the License, or (at your option) any later version.
#
# This library 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
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the
# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA.
set -e
. ${commondir}/libtest.sh
. ${commondir}/libvm.sh
set -x
# try to do an upgrade -- there shouldn't be any
vm_cmd rpm-ostree upgrade > out
assert_file_has_content out 'No upgrade available\.'
echo "ok no upgrade available"
if vm_cmd rpm-ostree upgrade --check; then
assert_not_reached "upgrade --check unexpectedly passed"
elif [ $? -ne 77 ]; then
assert_not_reached "upgrade --check didn't exit 77"
fi
echo "ok upgrade --check"