search for: skip_test_rhbz1011907_1165785_sh

Displaying 2 results from an estimated 2 matches for "skip_test_rhbz1011907_1165785_sh".

2015 Oct 19
1
[PATCH] Add a regression test for RHBZ#1011907 / RHBZ#1165785
...for: +# https://bugzilla.redhat.com/show_bug.cgi?id=1011907 +# https://bugzilla.redhat.com/show_bug.cgi?id=1165785 +# i.e., mount-loop option, which means correct startup sequence and creation +# of base devices (like /dev/loop-control for loopback setup) + +set -e +export LANG=C + +if [ -n "$SKIP_TEST_RHBZ1011907_1165785_SH" ]; then + echo "$0: test skipped because environment variable is set." + exit 77 +fi + +rm -f rhbz1011907-1165785-loop.img rhbz1011907-1165785.img + +qemu-img create rhbz1011907-1165785-loop.img 100M +qemu-img create rhbz1011907-1165785.img 300M + +guestfish -a rhbz1011907-116...
2017 Feb 20
3
[PATCH 0/3] tests: Define common test functions.
Previously I posted a work-in-progress preview of this patch series: https://www.redhat.com/archives/libguestfs/2017-February/msg00224.html This is the finished version that updates all of the shell-script based tests. It passes 'make check', 'make check-direct' and 'make check-slow'. Rich.