The tests/org-mode.scm tests expects 'jpl-outline-es' to be read as UTF-8. --- guile-present-0.3.0/tests/org-mode.scm 2014-09-23 22:29:51.426705753 +0200 +++ guile-present-0.3.0/tests/org-mode.scm 2014-09-23 22:30:09.634705548 +0200 @@ -194,9 +194,10 @@ "(Just another hacker)" "wingo@fluendo.com") (p "Julien Moutte, CEO" "julien@fluendo.com"))) + (with-fluids ((%default-port-encoding "UTF-8")) (call-with-input-file (in-vicinity *top-srcdir* "tests/jpl-outline-es") - org->presentation))) + org->presentation)))) (setlocale LC_ALL "") (exit-with-summary (run-all-defined-test-cases)) 50716f0949e6a66550c38b6ba738f66bba7'/> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/tests/guix-git-authenticate.sh
AgeCommit message (Expand)Author
2020-09-28tests: Simplify shell exit status negation;...* tests/guix-archive.sh, tests/guix-build-branch.sh, tests/guix-build.sh, tests/guix-daemon.sh, tests/guix-download.sh, tests/guix-environment.sh, tests/guix-gc.sh, tests/guix-git-authenticate.sh, tests/guix-graph.sh, tests/guix-hash.sh, tests/guix-lint.sh, tests/guix-pack-relocatable.sh, tests/guix-pack.sh, tests/guix-package-aliases.sh, tests/guix-package-net.sh, tests/guix-package.sh: Use the shell '!' keyword to negate command exit status in place of 'if ...; then false; else true; fi' Eric Bavier
2020-07-11Add 'guix git authenticate'....* guix/scripts/git.scm, guix/scripts/git/authenticate.scm, tests/guix-git-authenticate.sh: New files. * Makefile.am (MODULES): Add the *.scm files. (SH_TESTS): Add 'tests/guix-git-authenticate.sh'. * doc/guix.texi (Channels)[Specifying Channel Authorizations]: Mention 'guix git authenticate'. (Invoking guix git authenticate): New node. * po/guix/POTFILES.in: Add 'guix/scripts/git.scm' and 'guix/scripts/git/authenticate.scm'. Ludovic Courtès