summaryrefslogtreecommitdiff
path: root/gnu/tests.scm
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/tests.scm')
-rw-r--r--gnu/tests.scm18
1 files changed, 9 insertions, 9 deletions
diff --git a/gnu/tests.scm b/gnu/tests.scm
index 3b12726de82..ab74ed5874e 100644
--- a/gnu/tests.scm
+++ b/gnu/tests.scm
@@ -19,6 +19,15 @@
19;;; You should have received a copy of the GNU General Public License 19;;; You should have received a copy of the GNU General Public License
20;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>. 20;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
21 21
22;;; Commentary:
23;;;
24;;; This module provides the infrastructure to run operating system tests.
25;;; The most important part of that is tools to instrument the OS under test,
26;;; essentially allowing it to run in a virtual machine controlled by the host
27;;; system--hence the name "marionette".
28;;;
29;;; Code:
30
22(define-module (gnu tests) 31(define-module (gnu tests)
23 #:use-module (guix gexp) 32 #:use-module (guix gexp)
24 #:use-module (guix diagnostics) 33 #:use-module (guix diagnostics)
@@ -65,15 +74,6 @@
65 fold-system-tests 74 fold-system-tests
66 all-system-tests)) 75 all-system-tests))
67 76
68;;; Commentary:
69;;;
70;;; This module provides the infrastructure to run operating system tests.
71;;; The most important part of that is tools to instrument the OS under test,
72;;; essentially allowing it to run in a virtual machine controlled by the host
73;;; system--hence the name "marionette".
74;;;
75;;; Code:
76
77(define %default-marionette-device 77(define %default-marionette-device
78 ;; Default marionette device in the guest. 78 ;; Default marionette device in the guest.
79 "/dev/virtio-ports/org.gnu.guix.port.0") 79 "/dev/virtio-ports/org.gnu.guix.port.0")