mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
tests: Skip 'pivot-root' test on Linux > 4.7.5.
* tests/syscalls.scm ("pivot-root"): Skip when 'uname' returns a 'utsname:release' > 4.7.5.
This commit is contained in:
parent
5d73e30000
commit
a91d75ecbd
1 changed files with 4 additions and 1 deletions
|
@ -146,7 +146,10 @@ (define perform-container-tests?
|
|||
(waitpid fork-pid)
|
||||
result))))))))
|
||||
|
||||
(unless perform-container-tests?
|
||||
;; XXX: Skip this test when running Linux > 4.7.5 to work around
|
||||
;; <https://bugzilla.kernel.org/show_bug.cgi?id=183461>.
|
||||
(when (or (not perform-container-tests?)
|
||||
(version>? (utsname:release (uname)) "4.7.5"))
|
||||
(test-skip 1))
|
||||
(test-equal "pivot-root"
|
||||
#t
|
||||
|
|
Loading…
Reference in a new issue