aboutsummaryrefslogtreecommitdiff
path: root/gnu/tests/vnc.scm
Commit message (Collapse)AuthorAge
* tests: xvnc: Fix 'gdm auto-suspend is disabled' test.Maxim Cournoyer2023-07-19
| | | | | | | | | | | | This failure is another collateral from commit a09c7da ("tests: Fork and exec a new Guile for the marionette REPL."), which isolated the marionette evaluation environment from that of the host. * gnu/tests/vnc.scm (run-xvnc-test): Move the (guix build utils) import to... ["gdm auto-suspend is disabled"]: ... inside the marionette-eval of this test. Complete comment. Reported-by: Bruno Victal <mirai@makinata.eu>
* tests: xvnc: Group up GDM test and use GNU Ocrad instead of Tesseract.Bruno Victal2023-07-19
| | | | | | | * gnu/tests/vnc.scm (run-xvnc-test): Group up GDM test. Use GNU Ocrad. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Modified-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
* tests: xvnc: Do not use specification->package in OS definition.Maxim Cournoyer2022-10-07
| | | | | | | | | | Doing so would cause the extra package dependencies to not be correctly registered as dependencies, which would lead to a silent failure when attempting to load or byte compile the module at the time guix build itself (e.g., when running 'guix pull'). * gnu/tests/vnc.scm (%xvnc-os) [packages]: Turn the the specification->package declaration into a list of package objects.
* Revert "Revert "services: Add xvnc-service-type.""Maxim Cournoyer2022-10-07
| | | | | This reverts commit 0c4966160054bc50e6ab3a4ac9c9a6a1826ab5a0. The fix appears in the subsequent commit, for clarity.
* Revert "services: Add xvnc-service-type."Maxim Cournoyer2022-10-07
| | | | | This reverts commit 1c528a95cb92b7808e6603d7956185005583629f. This broke 'guix pull', for (yet) unknown reasons.
* services: Add xvnc-service-type.Maxim Cournoyer2022-10-07
* gnu/services/vnc.scm: New file. * gnu/tests/vnc.scm: Likewise. * gnu/local.mk: Register them.