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 p.scm?id=f066eebfd451ead396c5e566a81ef47892743760'>treecommitdiff
path: root/gnu/tests/desktop.scm
AgeCommit message (Expand)Author
2023-08-16gnu: elogind: Update to 252.9....Maxim Cournoyer
2023-05-14tests: elogind: Wait until 'elogind' is up....Ludovic Courtès
2022-08-26gnu: greetd-service-type: Add supplementary groups to greeter....muradm
2022-08-26gnu: seatd-service-type: Use seat group....muradm