CVSROOT: /cvs Module name: src Changes by: schwa...@cvs.openbsd.org 2020/07/30 15:32:19
Modified files: regress/usr.bin/mandoc: Makefile.inc regress/usr.bin/mandoc/db/run: Makefile regress/usr.bin/mandoc/eqn: Makefile.inc regress/usr.bin/mandoc/roff/de: Makefile Log message: bluhm@ has been pointing out for a long time that the mandoc test suite was quite nasty in hiding most of the commands being run with '@', hindering debugging in case anything failed. In particular, it hindered debugging that had to start from the log of a bulk regress run. So, finally, resolve this issue by removing almost all these '@'s. This commit does not change any of the test commands. If you want to be sure that you don't miss failures, run something like: make regress 2>&1 | tee make.log ; grep -B1 FAILED make.log