me
/
guix
Archived
1
0
Fork 0

gnu: cssc: Fix tests.

* gnu/packages/version-control.scm (cssc)[arguments]: Replace
egrep with grep -E in the precheck phase.
master
宋文武 2023-08-27 17:41:31 +08:00
parent 5078e98cf3
commit 6bd20f880c
No known key found for this signature in database
GPG Key ID: D415BF253B515976
1 changed files with 9 additions and 0 deletions

View File

@ -2377,6 +2377,15 @@ reviewing large, complex patch files.")
(substitute* "tests/prt/all-512.sh"
(("/bin/sh") (which "sh")))
(for-each
(lambda (file)
(substitute* file (("egrep") "grep -E")))
'("tests/common/test-common"
"tests/admin/comment.sh"
"tests/cdc/2comment.sh"
"tests/cdc/4order.sh"
"tests/get/subst.sh"))
;; XXX: This test has no hope of passing until there is a "nogroup"
;; entry (or at least some group to which the guix builder does
;; not belong) in the /etc/group file of the build environment.