[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
34/41: gnu: php: Skip tests failing on riscv64-linux.
From: |
guix-commits |
Subject: |
34/41: gnu: php: Skip tests failing on riscv64-linux. |
Date: |
Thu, 9 Sep 2021 08:39:38 -0400 (EDT) |
efraim pushed a commit to branch wip-riscv
in repository guix.
commit 369b7648d05e8f217198bca540ca249d21b61b6e
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Tue Aug 31 13:38:20 2021 +0300
gnu: php: Skip tests failing on riscv64-linux.
* gnu/packages/php.scm (php)[arguments]: Adjust custom 'prepare-tests
phase to delete some tests when building for riscv64-linux.
---
gnu/packages/php.scm | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/gnu/packages/php.scm b/gnu/packages/php.scm
index cecb615..dbffe80 100644
--- a/gnu/packages/php.scm
+++ b/gnu/packages/php.scm
@@ -5,6 +5,7 @@
;;; Copyright © 2018 Ricardo Wurmus <rekado@elephly.net>
;;; Copyright © 2019 Oleg Pykhalov <go.wigust@gmail.com>
;;; Copyright © 2020 Maxim Cournoyer <maxim.cournoyer@gmail.com>
+;;; Copyright © 2021 Efraim Flashner <efraim@flashner.co.il>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -196,6 +197,14 @@
"sapi/cli/tests/upload_2G.phpt"
"Zend/tests/concat_003.phpt")))
'())
+ ,@(if (target-riscv?)
+ ;; Drop tests known to fail on riscv64.
+ '((for-each delete-file
+ (list
+ ;; extensive backtracking
+ "ext/fileinfo/tests/cve-2014-3538-nojit.phpt"
+ "ext/fileinfo/tests/cve-2014-3538.phpt")))
+ '())
,@(if (target-ppc64le?)
;; Drop tests known to fail on powerpc64le.
- 40/41: gnu: Add u-boot-sifive-unmatched-bootloader., (continued)
- 40/41: gnu: Add u-boot-sifive-unmatched-bootloader., guix-commits, 2021/09/09
- 41/41: system: Add riscv64 support., guix-commits, 2021/09/09
- 10/41: gnu: openssl: Fix build on riscv64-linux., guix-commits, 2021/09/09
- 22/41: gnu: Add libunwind-next., guix-commits, 2021/09/09
- 31/41: gnu: make-opensbi-package: Adjust installed files., guix-commits, 2021/09/09
- 32/41: gnu: u-boot-sifive-unmatched: Build with opensbi., guix-commits, 2021/09/09
- 39/41: gnu: gtk+: Remove some more failing tests., guix-commits, 2021/09/09
- 29/41: gnu: nss: Adjust make-flags for riscv64-linux., guix-commits, 2021/09/09
- 33/41: gnu: dtc: Build without valgrind on riscv64-linux., guix-commits, 2021/09/09
- 26/41: gnu: qemu: Skip some tests on riscv64-linux., guix-commits, 2021/09/09
- 34/41: gnu: php: Skip tests failing on riscv64-linux.,
guix-commits <=