Copied from upstream repository. Hunk #2 is removed since it cannot be applied and it is not needed. From 7cead7137bf54851c1b7df5a3854351296d21276 Mon Sep 17 00:00:00 2001 From: Vasantha Ganesh K Date: Thu, 22 Jun 2017 23:38:40 +0530 Subject: [PATCH] removed `check-conventions' from make --- Makefile | 7 +- tests/haskell-code-conventions.el | 165 ------------------------------ 2 files changed, 1 insertion(+), 171 deletions(-) delete mode 100644 tests/haskell-code-conventions.el diff --git a/Makefile b/Makefile index b2c89d6..aa907c5 100644 --- a/Makefile +++ b/Makefile @@ -79,12 +79,7 @@ build-$(EMACS_VERSION)/build-flag : build-$(EMACS_VERSION) $(patsubst %.el,build check-%: tests/%-tests.el $(BATCH) -l "$<" -f ert-run-tests-batch-and-exit; -check: compile $(AUTOLOADS) check-ert check-conventions - -check-conventions : - $(BATCH) -l tests/haskell-code-conventions.el \ - -f haskell-check-conventions-batch-and-exit - @echo "conventions are okay" +check: compile $(AUTOLOADS) check-ert check-ert: $(ELCHECKS) $(BATCH) --eval "(when (= emacs-major-version 24) \ -- 2.18.0 anch.sh'>logtreecommitdiff
path: root/tests/guix-build-branch.sh
AgeCommit message (Expand)Author
2023-04-21tests: Fix checks for expected failures....Addresses <https://issues.guix.gnu.org/62406>. With 'set -e', a return status inverted with '!' does not cause the shell to exit immediately. Instead use '&& false' to indicate an expected failure. * tests/guix-archive.sh, tests/guix-build-branch.sh, tests/guix-build.sh, tests/guix-daemon.sh, tests/guix-download.sh, tests/guix-environment-container.sh, tests/guix-environment.sh, tests/guix-gc.sh, tests/guix-git-authenticate.sh, tests/guix-graph.sh, tests/guix-hash.sh, tests/guix-home.sh, tests/guix-pack-relocatable.sh, tests/guix-pack.sh, tests/guix-package-aliases.sh, tests/guix-package-net.sh, tests/guix-package.sh, tests/guix-refresh.sh, tests/guix-shell.sh, tests/guix-style.sh, tests/guix-system.sh: Replace uses of '! ...' with '... && false' or `test ! ...` as appropriate. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Eric Bavier
2022-10-22tests: 'guix build --with-commit' output no longer refers to the tag ID....This is a followup to 46f7011591601b4783b2dc2c7252c41564ca0140. * tests/guix-build-branch.sh: Replace tag ID by commit ID. Ludovic Courtès