aboutsummaryrefslogtreecommitdiff
path: root/nix
ModeNameSize
-rw-r--r--.gitignore24logplainabout
-rw-r--r--AUTHORS118logplainabout
-rw-r--r--COPYING26436logplainabout
d---------boost194logplain
d---------libstore906logplain
d---------libutil671logplain
-rw-r--r--local.mk6271logplainabout
d---------nix-daemon120logplain
d---------scripts215logplain
9faf55b13263d5f0b3314860af5d697a5'>marionette: 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. 2022-08-28build: marionette: Add support for Tesseract OCR.Maxim Cournoyer * gnu/build/marionette.scm (invoke-ocrad-ocr): New procedure. (invoke-tesseract-ocr): Likewise. (marionette-screen-text): Rename the #:ocrad argument to #:ocr. Dispatch the matching OCR invocation procedure. (wait-for-screen-text): Rename the #:ocrad argument to #:ocr. * gnu/tests/base.scm (run-basic-test): Adjust accordingly. * gnu/tests/install.scm (enter-luks-passphrase): Likewise. (enter-luks-passphrase-for-home): Likewise. 2022-08-28marionette: Improve the error message of 'wait-for-screen-text'.Maxim Cournoyer * gnu/build/marionette.scm (wait-for-screen-text): Return the last OCR'd text when the predicate fails to match instead of the not useful predicate object. 2022-08-11build: marionette: Adjust QEMU Info manual reference.Maxim Cournoyer * gnu/build/marionette.scm (marionette-control): Update doc to correct the QEMU Info manual reference. 2022-08-09tests: Add qemu-guest-agent system test.Timotej Lazar Enable the QEMU guest agent interface in marionette VMs, run the qemu-guest-agent service in one and try talking to it. * gnu/build/marionette.scm (make-marionette): Enable the guest agent device. * gnu/tests/virtualization.scm (run-qemu-guest-agent-test): New procedure. (%test-qemu-guest-agent): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org> 2022-05-22marionette: Add #:address parameter to 'wait-for-tcp-port'.Ludovic Courtès * gnu/build/marionette.scm (wait-for-tcp-port): Add #:address parameter. Honor it, and improve error reporting in the 'failure case.