diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2021-11-19 21:52:37 -0500 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2021-11-20 08:57:02 -0500 |
commit | 58c42ce41df50e77977d2559ce949b36e683984f (patch) | |
tree | b416e19fb41cba8f54786391f79b1ed814ff66e5 /gnu | |
parent | cb09adc09305b342a902ee13d78abb2a7cee4cdd (diff) | |
download | guix-58c42ce41df50e77977d2559ce949b36e683984f.tar guix-58c42ce41df50e77977d2559ce949b36e683984f.tar.gz |
gnu: libnice: Disable the 'test-bsd' test.
* gnu/packages/networking.scm (libnice)
[phases]{disable-failing-test}: Rename to...
{disable-failing-tests}: ... this, plural. Disable 'test-bsd'.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/networking.scm | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm index 57a07b9226..466be1dbc2 100644 --- a/gnu/packages/networking.scm +++ b/gnu/packages/networking.scm @@ -295,12 +295,17 @@ Android, and ChromeOS.") "-Dgtk_doc=enabled") #:phases (modify-phases %standard-phases - (add-after 'unpack 'disable-failing-test + (add-after 'unpack 'disable-failing-tests (lambda _ (substitute* "tests/meson.build" ;; ‘test-set-port-range.c:66:main: assertion failed: ;; (nice_agent_gather_candidates (agent, stream1))’ (("'test-set-port-range'" all) + (string-append "# " all)) + ;; The following test is disabled as it fails in a + ;; nondeterministic fashion (see: + ;; https://gitlab.freedesktop.org/libnice/libnice/-/issues/151). + (("'test-bsd'" all) (string-append "# " all))) (substitute* "stun/tests/meson.build" ;; test-bind.c:234: bad_responses: Assertion `len >= 20' |