aboutsummaryrefslogtreecommitdiff
path: root/tests/utils.scm
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <me@tobias.gr>2020-08-11 04:58:03 +0200
committerTobias Geerinckx-Rice <me@tobias.gr>2020-08-11 05:20:36 +0200
commit2bf6ee3b1c611fd92f87f4c236bead3ff655344b (patch)
treed3871255ad0c6eae19a2b6d067e5f20e441cd6ce /tests/utils.scm
parentc19b2df129acaa535fc02fbd139364440604b33f (diff)
downloadguix-2bf6ee3b1c611fd92f87f4c236bead3ff655344b.tar.gz
guix-2bf6ee3b1c611fd92f87f4c236bead3ff655344b.zip
gnu: synthv1: Update to 0.9.16.
* gnu/packages/music.scm (synthv1): Update to 0.9.16.
Diffstat (limited to 'tests/utils.scm')
0 files changed, 0 insertions, 0 deletions
d>Ludovic Courtès 2020-03-12inferior: Distinguish inferior exceptions....This avoids ambiguities when looking at a backtrace where the exception was actually thrown by an inferior in a very different context. * guix/inferior.scm (&inferior-exception): New condition type. (read-repl-response): Add optional 'inferior' parameter. Raise '&inferior-exception' instead of rethrowing to KEY when receiving an 'exception' message. (read-inferior-response): Pass INFERIOR to 'read-repl-response'. * tests/inferior.scm ("&inferior-exception"): New test. Ludovic Courtès 2019-09-21inferior: Propagate '&store-protocol-error' error conditions....Until now '&store-protocol-error' conditions raised in the inferior would not be correctly propagated because SRFI-35 records lack a read syntax. Reported at <https://bugs.gnu.org/37449> by Carl Dong <contact@carldong.me>. * guix/inferior.scm (port->inferior): Import (srfi srfi-34) in the inferior. (inferior-eval-with-store): Define 'error?' and 'error-message'. Wrap call to PROC in 'guard'. Check the response of INFERIOR for a 'store-protocol-error' or a 'result' tag. * tests/inferior.scm ("inferior-eval-with-store, &store-protocol-error"): New test. Ludovic Courtès