search for: b3ad3c3

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

2016 Feb 11
1
[PATCH] fish, sysprep: run FUSE-related tests only when FUSE is available
...\ test-prep.sh \ test-read-file.sh \ test-remote.sh \ @@ -306,6 +305,11 @@ TESTS += \ test-run.sh \ test-stringlist.sh \ test-upload-to-dir.sh + +if HAVE_FUSE +TESTS += \ + test-mount-local.sh +endif endif check-valgrind: diff --git a/sysprep/Makefile.am b/sysprep/Makefile.am index b3ad3c3..50eda8f 100644 --- a/sysprep/Makefile.am +++ b/sysprep/Makefile.am @@ -213,8 +213,12 @@ TESTS_ENVIRONMENT = \ if ENABLE_APPLIANCE TESTS = \ test-virt-sysprep.sh \ - test-virt-sysprep-passwords.sh \ + test-virt-sysprep-passwords.sh + +if HAVE_FUSE +TESTS += \ test-virt-sysprep-script.sh +endi...
2016 Jan 04
3
[PATCH 0/3] podwrapper: Generate consistent WARNING sections (RHBZ#1293527).
Fix for: https://bugzilla.redhat.com/show_bug.cgi?id=1293527 Note that patches 2/3 and 3/3 are dependent on each other, ie. applying 2/3 on its own will break the build. So I may combine these when applying the series. Rich.