search for: f2e24cf

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

2014 Mar 20
3
[PATCH 1/2] builder: allow the index parser to parse files with no sections
...,6 +108,8 @@ sections: { $$ = $1; } | section EMPTY_LINE emptylines sections { $$ = $1; $$->next = $4; } + | emptylines + { $$ = NULL; } section: SECTION_HEADER fields diff --git a/builder/website/validate.sh b/builder/website/validate.sh index bd9a4ed..f2e24cf 100755 --- a/builder/website/validate.sh +++ b/builder/website/validate.sh @@ -19,6 +19,13 @@ export LANG=C set -e +fn=test-filename-for-index-validate + +rm -f $fn +touch $fn + $VG ../virt-index-validate $srcdir/index $VG ../virt-index-validate $srcdir/index.asc +$VG ../virt-index-validate $...
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