summaryrefslogtreecommitdiff
path: root/gnu/tests
diff options
context:
space:
mode:
authorMarius Bakke <marius@gnu.org>2020-06-27 10:23:11 +0200
committerMarius Bakke <marius@gnu.org>2020-06-27 10:23:11 +0200
commit425fd7eb6a5f07eb9b854a5a29488e6f0b0acf3c (patch)
tree44479010890dd9aaf8bc52cab73f7c241a2fd9ea /gnu/tests
parentfe9f2d150019b9fc17f08f5a002d7ca932fc3eb0 (diff)
parent88dbef3b9868a565da1eba37c9d409cce972becc (diff)
Merge branch 'master' into staging
Diffstat (limited to 'gnu/tests')
-rw-r--r--gnu/tests/install.scm5
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/tests/install.scm b/gnu/tests/install.scm
index db355b85ca..b2edfa5c22 100644
--- a/gnu/tests/install.scm
+++ b/gnu/tests/install.scm
@@ -247,6 +247,8 @@ packages defined in installation-os."
(operating-system
(operating-system-with-gc-roots
os (list target guile-final)))
+ ;; Do not compress to speed-up the tests.
+ (compression? #f)
;; Don't provide substitutes; too big.
(substitutable? #f)))))
(define install
@@ -301,7 +303,8 @@ packages defined in installation-os."
;; Run SCRIPT. It typically invokes 'reboot' as a last step and
;; thus normally gets killed with SIGTERM by PID 1.
(let ((status (marionette-eval '(system #$script) marionette)))
- (exit (or (equal? (status:term-sig status) SIGTERM)
+ (exit (or (eof-object? status)
+ (equal? (status:term-sig status) SIGTERM)
(equal? (status:exit-val status) 0)))))
(when #$(->bool gui-test)