mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
tests: Do not fail when network interface aliases are present.
Fixes <https://bugs.gnu.org/42111>. * tests/syscalls.scm ("network-interface-names"): Filter interface names with a colon.
This commit is contained in:
parent
fdbba544d8
commit
5e113cf442
1 changed files with 5 additions and 1 deletions
|
@ -382,7 +382,11 @@ (define perform-container-tests?
|
|||
(member "lo" names))))
|
||||
|
||||
(test-assert "network-interface-names"
|
||||
(match (network-interface-names)
|
||||
(match (remove (lambda (interface)
|
||||
;; Ignore interface aliases since they don't show up in
|
||||
;; (all-network-interface-names).
|
||||
(string-contains interface ":"))
|
||||
(network-interface-names))
|
||||
(((? string? names) ..1)
|
||||
(lset<= string=? names (all-network-interface-names)))))
|
||||
|
||||
|
|
Loading…
Reference in a new issue