From 953c2de7061f18f55d8c51b72eb24945f436e80e Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Tue, 21 Nov 2017 22:42:56 +0100 Subject: tests: Disable test for freed disk space that fails on Btrfs. This is a follow-up to commit 40e89f5be609045bc2666cc16a4ef80bb7f84095. * 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. --- tests/store.scm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'tests/store.scm') diff --git a/tests/store.scm b/tests/store.scm index 45aeb329b0..fdf3be33f6 100644 --- a/tests/store.scm +++ b/tests/store.scm @@ -180,7 +180,9 @@ (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 . + ;;(> freed 0) (not (file-exists? p)))))) (test-assert "add-text-to-store vs. delete-paths" -- cgit v1.2.3