diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2024-10-20 17:42:27 +0200 |
|---|---|---|
| committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2024-11-12 17:41:14 +0900 |
| commit | 700126f654cabba3ff902ac5d4072fb9365efea7 (patch) | |
| tree | c619317299ca8e76839dd7f8103935d1c8800ad1 /gnu/packages/networking.scm | |
| parent | 4cb016fa0c12a6910f69c6e06048623e1d7385e5 (diff) | |
gnu: nzbget: Ignore failing tests.
* gnu/packages/networking.scm (nzbget)[arguments]<#:phases>:
Ignore a misconfigured test on aarch64.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Diffstat (limited to 'gnu/packages/networking.scm')
| -rw-r--r-- | gnu/packages/networking.scm | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm index 0ec11b5abb9..f0f0619161f 100644 --- a/gnu/packages/networking.scm +++ b/gnu/packages/networking.scm | |||
| @@ -2860,7 +2860,16 @@ gone wild and are suddenly taking up your bandwidth.") | |||
| 2860 | (base32 "13hakpkxqvqfjhk679l088209f54j7mqi3ifi820lyz6b1nvvj0r")))) | 2860 | (base32 "13hakpkxqvqfjhk679l088209f54j7mqi3ifi820lyz6b1nvvj0r")))) |
| 2861 | (build-system cmake-build-system) | 2861 | (build-system cmake-build-system) |
| 2862 | (arguments | 2862 | (arguments |
| 2863 | (list #:configure-flags '(list "-DENABLE_TESTS=1"))) | 2863 | (append (list #:configure-flags '(list "-DENABLE_TESTS=1")) |
| 2864 | (if (string=? "aarch64-linux" (%current-system)) | ||
| 2865 | (list #:phases | ||
| 2866 | #~(modify-phases %standard-phases | ||
| 2867 | (add-after 'unpack 'skip-failing-tests | ||
| 2868 | (lambda _ | ||
| 2869 | (substitute* "tests/system/CMakeLists.txt" | ||
| 2870 | (("(.*)SystemInfo.cpp" all) | ||
| 2871 | (string-append "#" all))))))) | ||
| 2872 | '()))) | ||
| 2864 | (inputs (list boost gnutls libxml2 ncurses openssl zlib)) | 2873 | (inputs (list boost gnutls libxml2 ncurses openssl zlib)) |
| 2865 | (native-inputs (list which)) | 2874 | (native-inputs (list which)) |
| 2866 | (home-page "https://github.com/nzbget/nzbget") | 2875 | (home-page "https://github.com/nzbget/nzbget") |
