aboutsummaryrefslogtreecommitdiff
path: root/gnu/services.scm
diff options
context:
space:
mode:
authorZheng Junjie <zhengjunjie@iscas.ac.cn>2024-12-15 21:17:34 +0800
committerZheng Junjie <zhengjunjie@iscas.ac.cn>2024-12-22 19:23:58 +0800
commite9cfcb8d36f14df87b49b857f4516f6d0b520410 (patch)
treec27d22acefea2cb2073576c10e88c7aee60ab826 /gnu/services.scm
parentcc1ddf8e6e846731634a156fc7106e1d45c88c62 (diff)
downloadguix-e9cfcb8d36f14df87b49b857f4516f6d0b520410.tar.gz
guix-e9cfcb8d36f14df87b49b857f4516f6d0b520410.zip
gnu: erofs-utils: Update to 1.8.3.
* gnu/packages/linux.scm (erofs-utils): Update to 1.8.3. Change-Id: I4747701b049fa5a2312cdaeca662601346d413d8
Diffstat (limited to 'gnu/services.scm')
0 files changed, 0 insertions, 0 deletions
-text': the screendump image used for the OCR is now preserved for inspection when 'wait-for-screen-text' fails. * gnu/build/marionette.scm (marionette-screen-text): Return the screendump image file as the second value. Adjust doc. (wait-for-screen-text): Add the preserved screendump image file name to the error message. Adjust doc. 2022-10-07marionette: Make marionette-screen-text private.Maxim Cournoyer It has only one user, which is better suited for wait-for-screen-text anyway. * gnu/tests/base.scm (run-basic-test): Refactor to use wait-for-screen-text instead of marionette-screen-text. 2022-09-16marionette: Avoid read error when wait-for-file file is empty.Christopher Baines Since #<eof> can't be read. * gnu/build/marionette.scm (wait-for-file): Return "" if file is empty. Partially-Fixes: https://issues.guix.gnu.org/57827 2022-09-16marionette: Make it easier to debug REPL read failures.Christopher Baines Log the remaining contnet written to the REPL, so that there's more to go on than: socket:5:14: Unknown # object: "#<" * gnu/build/marionette.scm (marionette-eval): Catch exceptions from read and log the remainder of the content from the REPL.