[bug#77288,3/6] tests: guix-daemon: Send system log output to /dev/console.
Commit Message
* gnu/tests/base.scm (%daemon-os): New variable.
(%test-guix-daemon): Use it.
Change-Id: Iea31808cc59e94971ea4cbc12d565c94348bf7a4
---
gnu/tests/base.scm | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
@@ -994,6 +994,10 @@ (define %test-activation
;;; Build daemon.
;;;
+(define %daemon-os
+ (operating-system-with-console-syslog
+ (simple-operating-system)))
+
(define (manifest-entry-without-grafts entry)
"Return ENTRY with grafts disabled on its contents."
(manifest-entry
@@ -1168,7 +1172,7 @@ (define %test-guix-daemon
(let ((os (marionette-operating-system
(operating-system
(inherit (operating-system-with-gc-roots
- %simple-os
+ %daemon-os
(list (profile
(name "hello-build-dependencies")
(content %hello-dependencies-manifest)))))