mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 23:06:59 +01:00
gnu: tar: Skip racy tests.
* gnu/packages/base.scm (tar)[arguments]: Skip two more tests in #:make-flags.
This commit is contained in:
parent
3359a70834
commit
169c658f7f
1 changed files with 9 additions and 1 deletions
|
@ -191,7 +191,15 @@ (define-public tar
|
|||
;; "a/y: Not linked to a/z" and fails, presumably due to differences in
|
||||
;; the order in which 'diff' traverses directories. That leads to a
|
||||
;; test failure even though conceptually the test passes. Skip it.
|
||||
#:make-flags '("TESTSUITEFLAGS=-k '!link mismatch'")))
|
||||
;; Test 117 and 118 are prone to race conditions too, particularly
|
||||
;; when cross-compiling, so we skip those as well. All issues have
|
||||
;; been fixed upstream in these commits:
|
||||
;; <https://git.savannah.gnu.org/cgit/tar.git/commit/?id=847a36f>
|
||||
;; <https://git.savannah.gnu.org/cgit/tar.git/commit/?id=64b43fd>
|
||||
#:make-flags (list (string-append
|
||||
"TESTSUITEFLAGS= -k '!link mismatch,"
|
||||
"!directory removed before reading,"
|
||||
"!explicitly named directory removed before reading'"))))
|
||||
|
||||
;; When cross-compiling, the 'set-shell-file-name' phase needs to be able
|
||||
;; to refer to the target Bash.
|
||||
|
|
Loading…
Reference in a new issue