diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-06-23 18:45:21 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-06-23 18:45:21 +0200 |
commit | 9dea3f101f252331c049c03f501398a5ec837ba9 (patch) | |
tree | 61d683a9fae3e147332d07fef207c1ddf51fc301 /gnu/packages/finance.scm | |
parent | 7f0af119a1e3ea9d0ae53811b619437b3e942702 (diff) | |
parent | 620669fd17306c2edb21c64a99fa47160fefb319 (diff) | |
download | guix-9dea3f101f252331c049c03f501398a5ec837ba9.tar guix-9dea3f101f252331c049c03f501398a5ec837ba9.tar.gz |
Merge branch 'master' into core-updates
Conflicts:
gnu/packages/cups.scm
gnu/packages/python-web.scm
gnu/packages/web.scm
guix/build/maven/pom.scm
Diffstat (limited to 'gnu/packages/finance.scm')
-rw-r--r-- | gnu/packages/finance.scm | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/gnu/packages/finance.scm b/gnu/packages/finance.scm index d4c571d3ec..b3a8e2b732 100644 --- a/gnu/packages/finance.scm +++ b/gnu/packages/finance.scm @@ -1457,7 +1457,14 @@ following three utilities are included with the library: (substitute* "src/Makefile.test.include" (("test/utilprocess_tests.cpp") "")) - #t)) + + ;; Some transaction validation rules have changed (see upstream + ;; commit f208400825d4641b9310a1fba023d56e0862e3b0), which makes + ;; a test fail. Disable it for now. + ;; TODO: Remove this when the next version is released. + (substitute* "src/Makefile.test.include" + (("test/txvalidationcache_tests.cpp") + "")))) (add-before 'check 'set-home (lambda _ (setenv "HOME" (getenv "TMPDIR")) ; tests write to $HOME |