diff options
author | John Kehayias <john.kehayias@protonmail.com> | 2021-11-20 13:02:25 -0500 |
---|---|---|
committer | Guillaume Le Vaillant <glv@posteo.net> | 2021-11-20 19:23:50 +0100 |
commit | c51667d52ed40b70cd15ff890141bff98f5e0d9a (patch) | |
tree | c033a129c957bfe2121ea573a5e763500d763b58 | |
parent | 89eb1f2a76bc304895f0f79430f757ed65d01f65 (diff) | |
download | guix-c51667d52ed40b70cd15ff890141bff98f5e0d9a.tar guix-c51667d52ed40b70cd15ff890141bff98f5e0d9a.tar.gz |
gnu: ledger: Remove failing test output.
* gnu/packages/finance.scm (ledger)[source]: Add snippet to remove a failing
test.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
-rw-r--r-- | gnu/packages/finance.scm | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/gnu/packages/finance.scm b/gnu/packages/finance.scm index b6c6527aa0..0bb9c79520 100644 --- a/gnu/packages/finance.scm +++ b/gnu/packages/finance.scm @@ -25,6 +25,7 @@ ;;; Copyright © 2021 ZmnSCPxj jxPCSnmZ <ZmnSCPxj@protonmail.com> ;;; Copyright © 2021 François J <francois-oss@avalenn.eu> ;;; Copyright © 2021 Foo Chuan Wei <chuanwei.foo@hotmail.com> +;;; Copyright © 2021 John Kehayias <john.kehayias@protonmail.com> ;;; ;;; This file is part of GNU Guix. ;;; @@ -305,7 +306,14 @@ and dynamically with report tools based on filtering and graphical charts.") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "0x6jxwss3wwzbzlwmnwb8yzjk8f9wfawif4f1b74z2qg6hc4r7f6")))) + (base32 "0x6jxwss3wwzbzlwmnwb8yzjk8f9wfawif4f1b74z2qg6hc4r7f6")) + (snippet '(begin + ;; Remove test that fails due to difference in + ;; reported error message (missing leading "./" in the + ;; file name); started some time after Guix commit + ;; 727f05e1e285aa52f5a19ec923fdc2259859b4b1 + (delete-file "test/regress/BF3C1F82-2.test") + #true)))) (build-system cmake-build-system) (arguments `(#:modules (,@%cmake-build-system-modules |