diff options
| author | Efraim Flashner <efraim@flashner.co.il> | 2025-11-30 11:39:40 +0200 |
|---|---|---|
| committer | Efraim Flashner <efraim@flashner.co.il> | 2025-12-02 15:47:45 +0200 |
| commit | 642f28f47ff9b8d4cb04b59aac3bff875ab60639 (patch) | |
| tree | 469ef20f5976d7802ba4e0f86db5ef1f729ec1e4 /gnu/packages/linux.scm | |
| parent | 7c7bad305a66da1e83299ce7fa2e96c803667d0a (diff) | |
gnu: libseccomp: Fix tests on powerpc-linux.
* gnu/packages/linux.scm (libseccomp)[arguments]: When building for
powerpc-linux add a phase to skip a test.
Change-Id: I670a9a2cf73073daca634cf4e8358e18d0ef91bd
Diffstat (limited to 'gnu/packages/linux.scm')
| -rw-r--r-- | gnu/packages/linux.scm | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 7a22fef06db..1ef168b1441 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -9104,6 +9104,16 @@ of flash storage.") (list #:configure-flags #~(list "--disable-static") #:phases #~(modify-phases %standard-phases + #$@(if (target-ppc32?) + ;; This test is removed upstream. See upstream commit + ;; 7db46d72f13c172b290818f624c2966bd0db5677 + #~((add-after 'unpack 'skip-62-sim-arch-tests + (lambda _ + (substitute* + "tests/62-sim-arch_transactions.tests" + (("test type: bpf-sim-fuzz") "") + (("62-sim-arch_transactions 5") ""))))) + #~()) (add-before 'check 'skip-load-test (lambda _ ;; This test does a native system call and fails when |
