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
|
@ -146,7 +146,10 @@
|
||||||
(waitpid fork-pid)
|
(waitpid fork-pid)
|
||||||
result))))))))
|
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-skip 1))
|
||||||
(test-equal "pivot-root"
|
(test-equal "pivot-root"
|
||||||
#t
|
#t
|
||||||
|
|
Loading…
Reference in New Issue