]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
don't silently skip a test
authorJim Meyering <meyering@redhat.com>
Tue, 25 Nov 2008 15:34:59 +0000 (15:34 +0000)
committerJim Meyering <meyering@redhat.com>
Tue, 25 Nov 2008 15:34:59 +0000 (15:34 +0000)
* tests/Makefile.am (EXTRA_DIST): Distribute domainschemadata/.
* tests/domainschematest: Fail the test if find invocation fails.

ChangeLog
tests/Makefile.am
tests/domainschematest

index 19a9559654020050afde3163feb8cf91dc97cd8b..35d7834c62634e906fd431646c92f77c25c6e2a3 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Tue Nov 25 16:34:09 +0100 2008 Jim Meyering <meyering@redhat.com>
+
+       don't silently skip a test
+       * tests/Makefile.am (EXTRA_DIST): Distribute domainschemadata/.
+       * tests/domainschematest: Fail the test if find invocation fails.
+
 Tue Nov 25 11:27:40 GMT 2008 Daniel P. Berrange <berrange@redhat.com>
 
        * mingw32-libvirt.spec.in: Disable UML driver for mingw build
index 9752cbf69e8edd2dd78977ba8558c4ebbb8b0e95..fd319e11aaef3f2a58e0de42c20332af03b0a332 100644 (file)
@@ -41,7 +41,8 @@ EXTRA_DIST =          \
        xmlrpcserver.py \
        qemuxml2argvdata \
        nodeinfodata     \
-       domainschematest
+       domainschematest \
+       domainschemadata
 
 noinst_PROGRAMS = xmlrpctest virshtest conftest \
         nodeinfotest statstest qparamtest
index c841c869ec91afc97c9dfce9ecb88a494021b830..d85d4631b4ad212e741dbcc3398951ba17e6c1f8 100755 (executable)
@@ -8,7 +8,7 @@ n=0
 f=0
 for dir in $DOMAINDIRS
 do
-  XML=`find $abs_srcdir/$dir -name '*.xml'`
+  XML=`find $abs_srcdir/$dir -name '*.xml'` || exit 1
 
   for xml in $XML
   do