Displaying 3 results from an estimated 3 matches for "af6bb95".
2014 Oct 06
1
[PATCH] log: tests: skip fedora.img if journal is not available
---
cat/test-virt-log.sh | 27 ++++++++++++++++++++++++++-
1 file changed, 26 insertions(+), 1 deletion(-)
diff --git a/cat/test-virt-log.sh b/cat/test-virt-log.sh
index af6bb95..d4fa0ed 100755
--- a/cat/test-virt-log.sh
+++ b/cat/test-virt-log.sh
@@ -19,7 +19,32 @@
export LANG=C
set -e
+can_handle ()
+{
+ fn=$(basename $1)
+ case "$fn" in
+ fedora.img)
+ guestfish -a /dev/null run : available journal
+ ;;
+ *)
+ return 0
+...
2014 Sep 16
5
[PATCH 0/3] tests: Introduce test harness for running tests.
These are my thoughts on adding a test harness to run tests instead of
using automake. The aim of this exercise is to allow us to run the
full test suite on an installed copy of libguestfs. Another aim is to
allow us to work around all the limitations and problems of automake.
The first patch makes an observation that since the ./run script sets
up $PATH to contain all the directories
2014 Oct 05
12
[PATCH v5 0/7] tests: Introduce test harness for running tests.
Since v4:
- More tests have been converted.
- Testing local guests fixed.
- Drop no-exec-stack test.