-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.am
More file actions
20 lines (15 loc) · 784 Bytes
/
Makefile.am
File metadata and controls
20 lines (15 loc) · 784 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
SUBDIRS = src tests samples
EXTRA_DIST = version.incl \
config/pretty-make \
scripts/createBindingsFormatFromHPP.pl \
scripts/makeStringDefinition.pl \
scripts/sanityTest.pl \
scripts/sanityTest_ExpectedResult.log
ACLOCAL_AMFLAGS = -I m4
CLEANFILES = test-results.log
pkgconfigdir = @pkgconfigdir@
pkgconfig_DATA= xerces-c.pc
check:
-rm -f test-results.log
export PATH=${abs_top_builddir}/samples:${abs_top_builddir}/tests:"${PATH}" && export XERCESC_NLS_HOME=${abs_top_builddir}/src/.libs && cd ${top_srcdir} && perl scripts/sanityTest.pl 2>&1 | ${SED} 's/ *[0-9][0-9]* *ms */{timing removed}/' 1> ${abs_top_builddir}/test-results.log
diff test-results.log ${top_srcdir}/scripts/sanityTest_ExpectedResult.log