1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
Author: Matthias Klose <doko@debian.org>
Description: Allow tests to fail (for testing on build machines)
Forwarded: not-needed
Last-Updated: 2016-08-29
Index: mxml-2.12/Makefile.in
===================================================================
--- mxml-2.12.orig/Makefile.in
+++ mxml-2.12/Makefile.in
@@ -335,18 +335,21 @@ testmxml: libmxml.a testmxml.o
$(RM) temp2.xml temp2s.xml; \
else \
echo Stdio file test failed!; \
+ false; \
fi
@if cmp temp1.xml temp1s.xml; then \
echo String test passed!; \
$(RM) temp1.xml temp1s.xml; \
else \
echo String test failed!; \
+ false ; \
fi
@if cmp test.xml test.xmlfd; then \
echo File descriptor test passed!; \
$(RM) test.xmlfd; \
else \
echo File descriptor test failed!; \
+ false ; \
fi
testmxml-vg: $(LIBOBJS) testmxml.o
|