don't silently skip a test

* tests/Makefile.am (EXTRA_DIST): Distribute domainschemadata/.
* tests/domainschematest: Fail the test if find invocation fails.
This commit is contained in:
Jim Meyering
2008-11-25 15:34:59 +00:00
parent 567989d0de
commit d5ae2c8882
3 changed files with 9 additions and 2 deletions

View File

@@ -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