diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-06-08 23:00:44 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-06-08 23:01:54 +0200 |
commit | c34a7dc2bb1380b3b0150f3d2fb64ca83381912c (patch) | |
tree | 8aa976fd9c183708c9fffce3bb788bca71279224 /gnu | |
parent | 076779c4d4669c7f72c5f04b6d7ba73244478e73 (diff) |
gnu: v4l2loopback-linux-module: Really disable tests.
Commit fdcd193744dbb92d3478c8e4e6c4f4336a872831 was a botched by-hand
‘merge’ that caused the default check phase to run, and fail.
* gnu/packages/linux.scm (v4l2loopback-linux-module)[arguments]:
Set #:tests? to #f.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/linux.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 19f59d219e..b3329c92c6 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -1197,6 +1197,8 @@ supported under @file{/sys/class/backlight/}.") (base32 "1qi4l6yam8nrlmc3zwkrz9vph0xsj1cgmkqci4652mbpbzigg7vn")))) (build-system linux-module-build-system) + (arguments + `(#:tests? #f)) ; no test suite (home-page "https://github.com/umlaeute/v4l2loopback") (synopsis "Linux kernel module to create virtual V4L2 video devices") (description |