From: Tobias Geerinckx-Rice Date: Mon, 23 Nov 2020 05:36:53 +0100 Subject: [PATCH] gnu: lsof: Make test failures fatal. Submitted upstream[0]. [0]: https://github.com/lsof-org/lsof/pull/144 diff --git a/tests/Makefile b/tests/Makefile index 08574a0..2923bb8 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -27,7 +27,7 @@ all: ${CKTSTDB} ${BASTST} ${STDTST} FRC exit 1 ;\ fi @rm -f config.LT* - -@err=0; \ + @err=0; \ echo ""; \ echo "Basic test:"; \ ./${BASTST}; \ @@ -54,8 +54,11 @@ all: ${CKTSTDB} ${BASTST} ${STDTST} FRC echo "Suggestion: try the optional tests: \"make opt\""; \ echo ""; \ fi; \ - fi; - @rm -f config.LT* + fi; \ + rm -f config.LT*; \ + if [ $$err -ne 0 ]; then \ + exit 1; \ + fi auto: ckDB silent FRC @@ -112,7 +115,7 @@ LTunix: LTunix.c ${CONFIG} ${LIBOBJ} ${HDR} config.ldflags opt: ${CKTSTDB} ${OPTTST} FRC @rm -f config.LT* - -@err=0; \ + @err=0; \ echo ""; \ echo "Optional tests:"; \ for i in ${OPTTST}; do \ @@ -126,8 +129,11 @@ opt: ${CKTSTDB} ${OPTTST} FRC else \ echo "All optional tests succeeded."; \ fi; \ - echo ""; - @rm -f config.LT* + echo ""; \ + rm -f config.LT*; \ + if [ $$err -ne 0 ]; then \ + exit 1; \ + fi optional: opt e/gnu/packages/perl-maths.scm?id=f5346094f0365a2c04ca00111ff06e17dac832e2'>treecommitdiff
path: root/gnu/packages/perl-maths.scm
es a regression introduced in 868da34d54365023223a4ff7520043ba55ad64e8. * doc/htmlxref.cnf (GUIX): Remove "/guix".
AgeCommit message (Expand)Author
2021-12-13gnu: Simplify package inputs....This commit was obtained by running: ./pre-inst-env guix style without any additional argument. Ludovic Courtès
2021-12-06gnu: perl-math-cephes: Build reproducibly....* gnu/packages/perl-maths.scm (perl-math-cephes)[source]: Sort result of readdir. Ricardo Wurmus
Ludovic Courtès
2022-06-16doc: Remove obsolete comment from htmlxref.cnf....This is follow up to <https://issues.guix.gnu.org/55290>. * doc/htmlxref.cnf (geiser): Delete obsolete comment. Maxim Cournoyer
2022-04-08doc: Fix cookbook URLs in htmlxref.cnf....Reported by Greg Hogan <code@greghogan.com>. * doc/htmlxref.cnf (GUIX_ROOT): New variable. (GUIX, GUIX_COOKBOOK): Adjust. Ludovic Courtès
2021-10-04doc: Update htmlxref.cnf....Update and fix broken references to cuirass, git, and guix-cookbook. * doc/htmlxref.cnf: Update from Texinfo. Factorize Guix manuals. (cuirass, git, guix-cookbook, guix-cookbook.de, guix-cookbook.fr): New entries. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Sarah Morgensen
2021-04-24doc: Fix cross-reference URL to translated manual....* doc/htmlxref.cnf: Fix translated manual URL. Julien Lepiller