mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
tests: Disable test for freed disk space that fails on Btrfs.
This is a follow-up to commit 40e89f5be6
.
* tests/store.scm ("dead path can be explicitly collected"): Don't check
that (> freed 0).
* gnu/packages/package-management.scm (guix)[arguments]<#:phases>: Remove
workaround for the same problem.
This commit is contained in:
parent
d1451fa0d0
commit
953c2de706
2 changed files with 3 additions and 7 deletions
|
@ -182,12 +182,6 @@ (define (copy arch)
|
|||
(substitute* "tests/guix-environment-container.sh"
|
||||
(("guix environment --version")
|
||||
"exit 77\n")))
|
||||
;; XXX: On some file systems (notably Btrfs), the test
|
||||
;; for freed disk space after GC may fail. See
|
||||
;; <https://bugs.gnu.org/29363>.
|
||||
(substitute* "tests/store.scm"
|
||||
(("(\\(> freed 0\\))" all)
|
||||
(string-append ";" all)))
|
||||
#t))
|
||||
(add-before 'check 'set-SHELL
|
||||
(lambda _
|
||||
|
|
|
@ -180,7 +180,9 @@ (define %store
|
|||
(random-text) '())))
|
||||
(let-values (((paths freed) (delete-paths %store (list p))))
|
||||
(and (equal? paths (list p))
|
||||
(> freed 0)
|
||||
;; XXX: On some file systems (notably Btrfs), freed
|
||||
;; may return 0. See <https://bugs.gnu.org/29363>.
|
||||
;;(> freed 0)
|
||||
(not (file-exists? p))))))
|
||||
|
||||
(test-assert "add-text-to-store vs. delete-paths"
|
||||
|
|
Loading…
Reference in a new issue