Source: pdf2djvu Version: 0.7.12-2.1 Severity: wishlist Tags: patch
Running tests in parallel makes understanding test failures hard, because output of a failed test could be intermixed with other ones[0].
The attached patch disables running tests in parallel. [0] See e.g.: https://buildd.debian.org/status/fetch.php?pkg=pdf2djvu&arch=kfreebsd-i386&ver=0.7.12-2&stamp=1331159451 -- Jakub Wilk
--- a/tests/Makefile +++ b/tests/Makefile @@ -53,4 +53,6 @@ ../pdf2djvu: $(MAKE) -C ../ +.NOTPARALLEL: + # vim:ts=4 sw=4 noet